Kano001 commited on
Commit
d8ee76f
1 Parent(s): 3903c9a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -12
Dockerfile CHANGED
@@ -9,18 +9,8 @@ WORKDIR /usr/src/app
9
  COPY package*.json ./
10
 
11
  RUN npm install
12
-
13
- RUN npm init -y
14
-
15
- RUN npm install colyseus
16
-
17
- RUN npm install --save @colyseus/monitor
18
-
19
- RUN npm install express
20
-
21
- #RUN npm install ws
22
- # If you are building your code for production
23
- # RUN npm ci --omit=dev
24
 
25
  # Bundle app source
26
  COPY . .
 
9
  COPY package*.json ./
10
 
11
  RUN npm install
12
+ RUN npm install --save express
13
+ RUN npm install --save ws
 
 
 
 
 
 
 
 
 
 
14
 
15
  # Bundle app source
16
  COPY . .