Switch Dockerfile to use npm ci
| @@ -17,7 +17,7 @@ COPY . ./ | |||
| 17 | 17 | ||
| 18 | RUN \ | 18 | RUN \ |
| 19 | echo "*** Install npm packages ***" && \ | 19 | echo "*** Install npm packages ***" && \ |
| 20 | npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force | 20 | npm ci --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force |
| 21 | 21 | ||
| 22 | # Create config directory and link config.yaml | 22 | # Create config directory and link config.yaml |
| 23 | RUN \ | 23 | RUN \ |