Spaces:
Running
Running
File size: 288 Bytes
8fd5bce 1a67726 2f1eec1 8fd5bce 22f7d39 8fd5bce 813eca2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM node:18-bullseye-slim
RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
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" ]
|