Code migration

This commit is contained in:
root
2025-10-04 17:17:11 +02:00
commit dbb5fc3801
15 changed files with 852 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
USER app
WORKDIR /app
EXPOSE 8080
EXPOSE 8081
COPY . /app
FROM base AS final
WORKDIR /app
ENTRYPOINT ["dotnet", "SampleApi.dll"]