This commit is contained in:
2026-05-15 14:26:30 +07:00
parent 41e523ff35
commit 1ff9826056
6 changed files with 315 additions and 123 deletions

View File

@@ -3,6 +3,8 @@ FROM node:20-bookworm-slim
WORKDIR /app
ENV NODE_ENV=production
ENV TZ=Asia/Ho_Chi_Minh
ENV APP_TIME_ZONE=Asia/Ho_Chi_Minh
COPY package*.json ./
RUN npm ci --omit=dev && npm cache clean --force
@@ -12,4 +14,4 @@ COPY public ./public
EXPOSE 3000
CMD ["node", "backend/server.js"]
CMD ["node", "backend/server.js"]