mNest / Dockerfile
newservers's picture
Update Dockerfile
8c60c6d verified
Raw
History Blame Contribute Delete
379 Bytes
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 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"]