mirror of
https://github.com/yummy4friends/y4f.git
synced 2025-07-18 15:15:53 +02:00
Feature/docker (#31)
* 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>
This commit is contained in:
6
src/WebApi/Dockerfile
Normal file
6
src/WebApi/Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM mcr.microsoft.com/dotnet/sdk:7.0
|
||||
WORKDIR /App
|
||||
COPY . ./
|
||||
RUN dotnet restore
|
||||
EXPOSE 5226
|
||||
CMD /usr/bin/dotnet run --project /App/WebApi.csproj
|
Reference in New Issue
Block a user