Spaces:
Running
Running
fix: replace npm ci with npm install to fix picomatch lock file mismatch
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -3,7 +3,7 @@ FROM node:20-alpine AS build-step
|
|
| 3 |
|
| 4 |
WORKDIR /app/frontend
|
| 5 |
COPY frontend/package*.json ./
|
| 6 |
-
RUN npm
|
| 7 |
|
| 8 |
COPY frontend/ ./
|
| 9 |
RUN npm run build
|
|
|
|
| 3 |
|
| 4 |
WORKDIR /app/frontend
|
| 5 |
COPY frontend/package*.json ./
|
| 6 |
+
RUN npm install --ignore-scripts
|
| 7 |
|
| 8 |
COPY frontend/ ./
|
| 9 |
RUN npm run build
|