Auth flow + legacy-peer-deps Docker fix

This commit is contained in:
Ryan Salazar
2026-06-26 21:42:07 +00:00
parent 47aa29a79b
commit 605a9ecb3f
2 changed files with 2 additions and 1 deletions

1
.npmrc Normal file
View File

@@ -0,0 +1 @@
legacy-peer-deps=true

View File

@@ -4,7 +4,7 @@ FROM base AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json package-lock.json* ./
RUN if [ -f package-lock.json ]; then npm ci; else npm install; fi
RUN npm install --legacy-peer-deps
FROM base AS builder
WORKDIR /app