deployment stuff

This commit is contained in:
2026-02-21 12:01:36 -08:00
parent fb1eea6d08
commit 531c6258e6
9 changed files with 174 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
WORKDIR /src
COPY api.csproj ./
RUN dotnet restore api.csproj
COPY . ./
RUN dotnet publish api.csproj -c Release -o /app/publish --no-restore
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime
WORKDIR /app
COPY --from=build /app/publish .
ENV ASPNETCORE_URLS=http://+:8005
EXPOSE 8005
ENTRYPOINT ["dotnet", "api.dll"]