diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 7f8c809..a17dd8e 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -7,7 +7,7 @@ RUN apk add --no-cache libc6-compat # ========= DEPENDENCIES ========= FROM base AS deps COPY package*.json ./ -RUN npm ci +RUN npm install --legacy-peer-deps # ========= BUILD ========= FROM base AS builder