Compare commits

1 Commits

View File

@@ -3,6 +3,12 @@ FROM node:20-alpine
WORKDIR /usr/src/app
COPY package*.json ./
# Set timezone to Asia/Shanghai
RUN apk add --no-cache tzdata
ENV TZ=Asia/Shanghai
ENV NODE_ENV=production
RUN npm install
COPY . .