Skip to content
Snippets Groups Projects
Unverified Commit a5b75e63 authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

build: use corepack pnpm (#28684)

parent 0bde0bd2
No related branches found
No related tags found
No related merge requests found
......@@ -22,13 +22,13 @@ ENV CI=1 npm_config_modules_cache_max_age=0
COPY pnpm-lock.yaml ./
# only fetch deps from lockfile https://pnpm.io/cli/fetch
RUN pnpm fetch --prod
RUN corepack pnpm fetch --prod
COPY . ./
# install
RUN set -ex; \
pnpm install --prod --offline --ignore-scripts; \
corepack pnpm install --prod --offline --ignore-scripts; \
true
# test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment