cpro / Dockerfile
Reaperxxxx's picture
Update Dockerfile
6ff8dc1 verified
Raw
History Blame Contribute Delete
311 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 cors cookie-parser mongodb express nodemailer express-rate-limit bcrypt dotenv jsonwebtoken body-parser
EXPOSE 7860
CMD ["/start.sh"]