Skip to content

Commit 6fe711a

Browse files
fix: Use npm install instead of ci in Dockerfile
1 parent 296d611 commit 6fe711a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ RUN apt-get update && apt-get install -y \
1212
WORKDIR /app
1313

1414
# Copy package files
15-
COPY package*.json ./
15+
COPY package.json ./
1616

17-
# Install dependencies
18-
RUN npm ci --omit=dev --no-audit --no-fund && \
17+
# Install dependencies (using install instead of ci for flexibility)
18+
RUN npm install --omit=dev --no-audit --no-fund && \
1919
npm cache clean --force
2020

2121
# Copy source code

0 commit comments

Comments
 (0)