redteam-deepseek / Dockerfile
ffreemt
Update back to old Dockerfile
8fd5bce
raw
history blame contribute delete
No virus
288 Bytes
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" ]