From f1bbe539a7788c95c869c1831d93d64498654131 Mon Sep 17 00:00:00 2001 From: Ivan Li Date: Fri, 7 Oct 2022 22:20:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20CI=20=E5=AE=89=E8=A3=85=E4=BE=9D?= =?UTF-8?q?=E8=B5=96=E5=A4=B1=E8=B4=A5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 06185be..65644ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:16-alpine as base RUN apk add --no-cache libc6-compat WORKDIR /app COPY package-lock.json package.json ./ -RUN npm ci --no-audit --force +RUN npm ci --no-audit --legacy-peer-deps COPY . . FROM node:16-alpine as release