fix: Change nginx to port 8080 (non-root user can't bind to 80)
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul Nothaft
2026-01-04 23:17:38 +01:00
parent 12eac5ef8c
commit 69b13191a3
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -65,8 +65,8 @@ RUN echo '#!/bin/sh' > /app/start.sh && \
# Switch to non-root user
USER nodejs
# Expose ports (3000 for API, 80 for frontend)
EXPOSE 3000 80
# Expose ports (3000 for API, 8080 for frontend)
EXPOSE 3000 8080
# Start both nginx and node
CMD ["/app/start.sh"]