File size: 397 Bytes
ea4e648 f4f455a ea4e648 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM node:20-slim
WORKDIR /app
RUN apt-get update && \
apt-get install -y git ffmpeg && \
apt-get clean && rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/reaperofssa/mNest.git /app
RUN npm install mongodb node-cron telegraf multer express-validator express uuid bcrypt archiver multer form-data fs-extra axios
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "index.js"] |