NexusV1 commited on
Commit
ea4e648
·
verified ·
1 Parent(s): d628095

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && \
6
+ apt-get install -y git ffmpeg && \
7
+ apt-get clean && rm -rf /var/lib/apt/lists/*
8
+
9
+ RUN git clone https://github.com/reaperofssa/mNest.git /app
10
+
11
+ RUN npm install telegraf multer express-validator express uuid bcrypt archiver multer form-data fs-extra axios
12
+
13
+ RUN chmod -R 777 /app
14
+
15
+ EXPOSE 7860
16
+
17
+ CMD ["node", "index.js"]