Skip to content

Commit 6f3955d

Browse files
committed
fix: Update npm install command in Dockerfile
- Changed `npm ci` to `npm i` for improved dependency installation in the Dockerfile.
1 parent 639896e commit 6f3955d

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
@@ -17,7 +17,7 @@ WORKDIR /app/web
1717
COPY web/package*.json ./
1818

1919
# Install dependencies with cache optimization
20-
RUN npm ci --no-audit --prefer-offline
20+
RUN npm i --no-audit --prefer-offline
2121

2222
# Copy source code
2323
COPY web/ ./

0 commit comments

Comments
 (0)