Update Dockerfile

This commit is contained in:
2024-09-24 16:13:23 +02:00
committed by GitHub
Unverified
parent e0ba8fbb97
commit a59c158fea

View File

@@ -15,6 +15,7 @@ RUN dotnet build "WatchIt.Website.csproj" -c $BUILD_CONFIGURATION -o /app/build
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "WatchIt.Website.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
RUN dotnet dev-certs https
FROM base AS final
WORKDIR /app