flameface commited on
Commit
1c2f9b6
·
verified ·
1 Parent(s): 0d708bc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -4,8 +4,10 @@ WORKDIR /
4
 
5
  EXPOSE 7680
6
 
7
- COPY . .
8
 
9
  RUN npm install
10
 
 
 
11
  CMD ["npm", "start"]
 
4
 
5
  EXPOSE 7680
6
 
7
+ COPY package*.json ./
8
 
9
  RUN npm install
10
 
11
+ COPY . .
12
+
13
  CMD ["npm", "start"]