initial commit

This commit is contained in:
fox
2026-06-23 19:03:31 +01:00
commit 689276ea7d
102 changed files with 8740 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /App
# Copy everything
COPY . ./
# Restore as distinct layers
RUN dotnet restore
# Build and publish a release
RUN dotnet publish -o out
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:10.0
VOLUME /data
WORKDIR /App
COPY --from=build /App/out .
ENTRYPOINT ["dotnet", "SolicitorsApi.dll"]