rajvivan commited on
Commit
a254b19
·
verified ·
1 Parent(s): 74e9e04

fix: replace npm ci with npm install to fix picomatch lock file mismatch

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,7 +3,7 @@ FROM node:20-alpine AS build-step
3
 
4
  WORKDIR /app/frontend
5
  COPY frontend/package*.json ./
6
- RUN npm ci --ignore-scripts
7
 
8
  COPY frontend/ ./
9
  RUN npm run build
 
3
 
4
  WORKDIR /app/frontend
5
  COPY frontend/package*.json ./
6
+ RUN npm install --ignore-scripts
7
 
8
  COPY frontend/ ./
9
  RUN npm run build