Browse Source
ensure we use the patched npm cli of latest nodejs in build progress
We have to track the version
pull/1024/head
Philip H
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
Dockerfile
|
|
@ -3,7 +3,7 @@ |
|
|
FROM docker.io/library/node:18-alpine AS build_node_modules |
|
|
FROM docker.io/library/node:18-alpine AS build_node_modules |
|
|
|
|
|
|
|
|
# Update npm to latest version |
|
|
# Update npm to latest version |
|
|
RUN npm install -g npm@latest |
|
|
RUN npm install -g npm@10.5.2 |
|
|
|
|
|
|
|
|
# Copy Web UI |
|
|
# Copy Web UI |
|
|
COPY src /app |
|
|
COPY src /app |
|
|
|