This commit is contained in:
bronku 2025-11-10 14:55:25 +01:00
commit 646805c693
7 changed files with 48 additions and 0 deletions

8
dotnet/Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
COPY *.csproj .
RUN dotnet restore
COPY . .
CMD ["dotnet", "run"]