diff --git a/keep-notes/Dockerfile b/keep-notes/Dockerfile index 6f5ee80..dd74744 100644 --- a/keep-notes/Dockerfile +++ b/keep-notes/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app # Install dependencies based on the preferred package manager COPY package.json package-lock.json* ./ -RUN npm ci +RUN npm ci --legacy-peer-deps # Rebuild the source code only when needed FROM base AS builder