fix: Update Dockerfile to use npm install --production instead of npm ci --production
This commit is contained in:
@@ -8,7 +8,7 @@ RUN npm run build
|
||||
FROM node:20-alpine
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm ci --production
|
||||
RUN npm install --production
|
||||
COPY --from=builder /app/dist ./dist
|
||||
COPY --from=builder /app/db ./db
|
||||
|
||||
|
||||
Reference in New Issue
Block a user