Update Dockerfile to use port 3000 (standardized deploy)

This commit is contained in:
Gemini CLI 2026-02-28 09:51:28 -06:00
parent 034ab72fb4
commit f17f93df0c

View file

@ -9,5 +9,5 @@ FROM node:20-alpine
WORKDIR /app
RUN npm install -g serve
COPY --from=build /app/dist ./dist
EXPOSE 8080
CMD ["serve", "-s", "dist", "-l", "8080"]
EXPOSE 3000
CMD ["serve", "-s", "dist", "-l", "3000"]