Skip to content

Commit 35f2129

Browse files
committed
fix: docker
1 parent 16d9af7 commit 35f2129

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WORKDIR /app
77
COPY package*.json ./
88

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

1212
# Copy source code
1313
COPY . .
@@ -24,7 +24,7 @@ WORKDIR /app
2424
COPY package*.json ./
2525

2626
# Install production dependencies
27-
RUN npm ci --only=production && npm cache clean --force
27+
RUN npm i
2828

2929
# Copy built application
3030
COPY --from=builder /app/dist ./dist

0 commit comments

Comments
 (0)