Change entrypoint
Docker Build and Release Upload / build (push) Successful in 1m37s

This commit is contained in:
2025-07-26 12:17:45 -07:00
parent 0a9ee122e7
commit 390b776d04
+3 -1
View File
@@ -77,4 +77,6 @@ COPY --from=build-backend /app/publish ./
# Copy in the client # Copy in the client
COPY --from=build-frontend /debug/wwwroot ./wwwroot/ COPY --from=build-frontend /debug/wwwroot ./wwwroot/
ENTRYPOINT ["dotnet", "Server.dll", "--url", "http://localhost:5000"] COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]