Changing port

This commit is contained in:
MangoPig
2025-12-09 19:59:46 +00:00
parent 6333829715
commit 8a8b1d4b68
4 changed files with 25 additions and 67 deletions

View File

@@ -37,7 +37,7 @@ RUN npm install -g serve
COPY --from=build /app/dist ./dist
COPY serve.json ./dist
# Expose the port you want for production (e.g., 3000 or 80)
EXPOSE 3000
# Expose the port you want for production (e.g., 3000)
EXPOSE 5000
CMD ["serve", "dist", "-l", "3000", "--config", "serve.json"]
CMD ["serve", "dist", "-l", "5000", "--config", "serve.json"]