tranquan24 commited on
Commit
1faa4f6
·
verified ·
1 Parent(s): 29b5003

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:latest
2
+ EXPOSE 7860
3
+
4
+ WORKDIR /usr/src
5
+
6
+ COPY . .
7
+
8
+
9
+ RUN npm install npm
10
+ RUN npm install axios express request dotenv
11
+
12
+ CMD ["node", "index.js"]