Reaperxxxx commited on
Commit
14f4757
·
verified ·
1 Parent(s): 9a70c9c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+
3
+ RUN apt-get update && apt-get install -y git
4
+
5
+ RUN git clone https://github.com/reaperofssa/ver.git /app
6
+
7
+ WORKDIR /app
8
+
9
+ RUN npm install express axios
10
+
11
+ RUN chmod -R 777 /app
12
+
13
+ EXPOSE 7860
14
+
15
+ CMD ["node", "app.js"]