Use port 3000
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-12-25 19:49:52 -05:00
parent 7589ef7df6
commit b50c84f8cf

View File

@@ -16,7 +16,7 @@ COPY --from=builder /app/dist /usr/share/nginx/html
# Add nginx configuration for SPA routing
RUN echo 'server { \
listen 80; \
listen 3000; \
location / { \
root /usr/share/nginx/html; \
index index.html; \
@@ -24,6 +24,6 @@ RUN echo 'server { \
} \
}' > /etc/nginx/conf.d/default.conf
EXPOSE 80
EXPOSE 3000
CMD ["nginx", "-g", "daemon off;"]