TheTapTap800 commited on
Commit
0a27f4a
·
1 Parent(s): 46c44ad

Fix Dockerfile: use npm install instead of npm ci

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ WORKDIR /app
7
  COPY package*.json ./
8
 
9
  # Install app dependencies
10
- RUN npm ci --only=production
11
 
12
  # Bundle app source
13
  COPY . .
 
7
  COPY package*.json ./
8
 
9
  # Install app dependencies
10
+ RUN npm install --omit=dev
11
 
12
  # Bundle app source
13
  COPY . .