Cnm / Dockerfile
Reaperxxxx's picture
Update Dockerfile
8f309c9 verified
Raw
History Blame Contribute Delete
281 Bytes
FROM node:20
RUN apt-get update && apt-get install -y git
COPY start.sh /start.sh
RUN chmod +x /start.sh
RUN mkdir -p /app && chmod -R 777 /app
WORKDIR /app
RUN npm install multer cors express mongoose bcrypt axios socket.io body-parser form-data
EXPOSE 7860
CMD ["/start.sh"]