mirror of
https://github.com/yummy4friends/y4f.git
synced 2024-11-13 02:52:46 +01:00
4b5f0c2b96
* Add Docker capabilities Changed launchSettings Added Dockerfile && docker-compose with traefik labels * Relocate launchSettings.json * Delete workflows Not needed anymore * Add Docker for WebApi Added docker-compose && Dockerfile * Fix minor mistakes --------- Co-authored-by: ProfessionalUwU <andre.fuhry@hopeless-cloud.xyz>
6 lines
149 B
Docker
6 lines
149 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:7.0
|
|
WORKDIR /App
|
|
COPY . ./
|
|
RUN dotnet restore
|
|
EXPOSE 5248
|
|
CMD /usr/bin/dotnet run --project /App/src/y4f/y4f.csproj |