File size: 326 Bytes
f599cf1 74440b6 f599cf1 74440b6 f599cf1 74440b6 f599cf1 344eeea 74440b6 f599cf1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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 mongodb express-rate-limit jsonwebtoken cookie-parser bcrypt axios socket.io body-parser form-data
EXPOSE 7860
CMD ["/start.sh"] |