Commit ·
8130efc
1
Parent(s): b42e06f
fix: use --legacy-peer-deps to resolve React version conflict
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -6,7 +6,7 @@ RUN apk add --no-cache libc6-compat
|
|
| 6 |
WORKDIR /app
|
| 7 |
|
| 8 |
COPY package.json package-lock.json* ./
|
| 9 |
-
RUN npm ci
|
| 10 |
|
| 11 |
# Rebuild the source code only when needed
|
| 12 |
FROM base AS builder
|
|
|
|
| 6 |
WORKDIR /app
|
| 7 |
|
| 8 |
COPY package.json package-lock.json* ./
|
| 9 |
+
RUN npm ci --legacy-peer-deps
|
| 10 |
|
| 11 |
# Rebuild the source code only when needed
|
| 12 |
FROM base AS builder
|