We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3457ba7 commit 1f49142Copy full SHA for 1f49142
src/extension/Dockerfile
@@ -3,11 +3,9 @@
3
FROM --platform=$BUILDPLATFORM node:23-alpine3.21@sha256:86703151a18fcd06258e013073508c4afea8e19cd7ed451554221dd00aea83fc AS client-builder
4
WORKDIR /ui
5
COPY ui/package.json ui/package-lock.json ./
6
-RUN --mount=type=cache,target=/usr/src/app/.npm \
7
- npm set cache /usr/src/app/.npm && \
8
- npm ci
+RUN --mount=type=cache,target=/root/.npm npm ci
9
COPY ui/. .
10
-RUN npm run build
+RUN --mount=type=cache,target=/root/.npm npm run build
11
12
FROM alpine:3.21@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
13
ARG TARGETARCH
0 commit comments