dfa32412 commited on
Commit
f1efb5e
·
verified ·
1 Parent(s): 1c0fd2f

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node
2
+
3
+ run apt-get update && apt-get install git && apt-get install nginx
4
+
5
+ WORKDIR /app
6
+
7
+ COPY . .
8
+
9
+ RUN chmod 777 /app
10
+
11
+ RUN npm i
12
+
13
+ EXPOSE 3000
14
+
15
+ CMD ["npm", "start"]