Fix serve command syntax

This commit is contained in:
Kunthawat Greethong
2026-03-13 09:36:20 +07:00
parent 8b6b70a7f2
commit 6e71bf60b8

View File

@@ -11,4 +11,4 @@ COPY --from=builder /app/dist ./dist
RUN npm install -g serve
EXPOSE 80
ENV NODE_ENV=production
CMD ["serve", "-s", "dist", "-l", "80", "--listen-addr", "0.0.0.0"]
CMD ["serve", "-s", "dist", "-l", "0.0.0.0:80"]