Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ FROM node:18-alpine AS builder
|
|
| 4 |
RUN apk add --no-cache git python3 make g++ bash findutils
|
| 5 |
WORKDIR /app
|
| 6 |
COPY . .
|
| 7 |
-
RUN npm install @babel/runtime --save
|
| 8 |
RUN npm ci --no-audit --no-fund || npm install --no-audit --no-fund --legacy-peer-deps
|
| 9 |
RUN npm run build
|
| 10 |
|
|
|
|
| 4 |
RUN apk add --no-cache git python3 make g++ bash findutils
|
| 5 |
WORKDIR /app
|
| 6 |
COPY . .
|
| 7 |
+
RUN npm install @babel/runtime --save --legacy-peer-deps
|
| 8 |
RUN npm ci --no-audit --no-fund || npm install --no-audit --no-fund --legacy-peer-deps
|
| 9 |
RUN npm run build
|
| 10 |
|