Create the certs if missing and run instead
Docker Build and Release Upload / build (push) Successful in 1m22s

This commit is contained in:
2025-07-26 12:21:44 -07:00
parent 390b776d04
commit 1cfad5afa4
3 changed files with 5 additions and 9 deletions
+1 -4
View File
@@ -56,10 +56,6 @@ RUN set -e && \
FROM mcr.microsoft.com/dotnet/aspnet:9.0
WORKDIR /
COPY cert-gen.sh /cert-gen.sh
RUN chmod +x /cert-gen.sh
WORKDIR /app
ENV ASPNETCORE_HTTP_PORTS=5000
@@ -77,6 +73,7 @@ COPY --from=build-backend /app/publish ./
# Copy in the client
COPY --from=build-frontend /debug/wwwroot ./wwwroot/
# Copy in the entryscript and run
COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]