Update Dockerfile

This commit is contained in:
2024-09-24 16:05:49 +02:00
committed by GitHub
Unverified
parent 9b30fce415
commit 6a0852e2eb

View File

@@ -19,4 +19,5 @@ RUN dotnet publish "WatchIt.WebAPI.csproj" -c $BUILD_CONFIGURATION -o /app/publi
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
RUN dotnet dev-certs https
ENTRYPOINT ["dotnet", "WatchIt.WebAPI.dll"]