servds / Dockerfile
ffreemt
Update RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo $TZ > /etc/timezone in Dockerfile
6dac806
raw
history blame
No virus
316 Bytes
FROM node:18-bullseye-slim
RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
COPY . .
RUN chown -R 1000:1000 /app
USER 1000
RUN npm install
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
ENV NODE_OPTIONS="--max-old-space-size=12882"
CMD [ "npm", "start" ]