Skip to content

Commit d0c9f59

Browse files
committed
fix: use npm install instead of npm ci in Dockerfile to bypass strict lockfile validation errors
1 parent 5067960 commit d0c9f59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY package.json package-lock.json ./
77
COPY backend ./backend
88

99
# Install dependencies
10-
RUN npm ci
10+
RUN npm install
1111

1212
# Build backend
1313
WORKDIR /app/backend

0 commit comments

Comments
 (0)