fix: Dockerfile use npm install instead of npm ci
This commit is contained in:
+2
-2
@@ -1,7 +1,7 @@
|
||||
FROM node:24-alpine
|
||||
WORKDIR /app
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci --omit=dev
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
EXPOSE 3000
|
||||
|
||||
Reference in New Issue
Block a user