fix: Use npm install instead of npm ci (no package-lock.json)
This commit is contained in:
@@ -4,8 +4,8 @@ WORKDIR /app
|
||||
|
||||
# Install dependencies
|
||||
FROM base AS deps
|
||||
COPY package.json package-lock.json* ./
|
||||
RUN npm ci
|
||||
COPY package.json ./
|
||||
RUN npm install
|
||||
|
||||
# Build
|
||||
FROM base AS builder
|
||||
|
||||
Reference in New Issue
Block a user