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 73dc6ed commit cf110f2Copy full SHA for cf110f2
1 file changed
Dockerfile
@@ -3,6 +3,8 @@ FROM --platform=$BUILDPLATFORM node:25.9.0-alpine AS node
3
4
RUN npm install -g --force corepack && corepack enable
5
6
+ENV CI=true
7
+
8
WORKDIR /build
9
10
# Install dependencies from lock file
@@ -11,7 +13,7 @@ RUN pnpm fetch --ignore-scripts --no-optional
11
13
12
14
# Copy package.json and install dependencies
15
COPY package.json ./
-RUN pnpm install --offline --ignore-scripts --no-optional --config.confirm-modules-purge=false
16
+RUN pnpm install --offline --ignore-scripts --no-optional
17
18
# Copy assets and translations to build
19
COPY vite.config.ts tsconfig.json .prettierrc.cjs .npmrc ./
0 commit comments