redteam-deepseek / Dockerfile
ffreemt
Update local files instead of git clone
813eca2
raw
history blame
No virus
228 Bytes
FROM node:18-bullseye-slim
WORKDIR /app
RUN chown -R 1000:1000 /app
USER 1000
RUN cp . .
RUN npm install
RUN npm run build
EXPOSE 7860
ENV NODE_ENV=production
ENV NODE_OPTIONS="--max-old-space-size=12882"
CMD [ "npm", "start" ]