Update Dockerfile port to 3000

This commit is contained in:
Kunthawat
2026-04-02 10:44:40 +07:00
parent 4bb73d8924
commit 4424a30bee

View File

@@ -14,10 +14,10 @@ COPY --from=builder /app/node_modules ./node_modules
RUN apk add --no-cache sqlite-libs
EXPOSE 4321
EXPOSE 3000
ENV NODE_ENV=production
ENV HOST=0.0.0.0
ENV PORT=4321
ENV PORT=3000
CMD ["node", "dist/server/entry.mjs"]