npm ci is troublesome with dependabot PRs

This commit is contained in:
Deepak Prabhakara 2023-01-10 20:14:05 +00:00
parent d779145fe8
commit 7a94687a27
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json package-lock.json ./
COPY npm npm
RUN npm ci
RUN npm install --omit=dev

View File

@ -10,7 +10,7 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json package-lock.json ./
COPY npm npm
RUN npm ci
RUN npm install --omit=dev