From dc754232bc5250c6a8e0a6a0aa6a8442bdab5b55 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Fri, 11 Jul 2025 15:25:24 +0200 Subject: [PATCH] ci: revert corepack workaround (#3581) --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 81e3435cd..cd7f063e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,6 @@ RUN apk add --no-cache libc6-compat curl bash RUN apk update COPY . . -# Install working version of corepack (See https://github.com/nodejs/corepack/issues/612) -RUN npm install -g corepack@0.31.0 && corepack --version RUN corepack enable pnpm && pnpm install --recursive --frozen-lockfile # Copy static data as it is not part of the build @@ -19,8 +17,7 @@ COPY static-data ./static-data ARG SKIP_ENV_VALIDATION='true' ARG CI='true' ARG DISABLE_REDIS_LOGS='true' -# Install working version of corepack (See https://github.com/nodejs/corepack/issues/612) -RUN npm install -g corepack@0.31.0 && corepack --version + RUN corepack enable pnpm && pnpm build FROM base AS runner