From c88938cffcf09920933073663a4c5ffcc8689673 Mon Sep 17 00:00:00 2001 From: BaptisteCDC <146927625+BaptisteCDC@users.noreply.github.com> Date: Tue, 11 Feb 2025 15:15:41 +0100 Subject: [PATCH] ci: updated Dockerfile to install latest version of corepack to ensure to have the right version to pnpm --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d287d40763..99e6f1b57a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ WORKDIR /app # Install dependencies (this step is cached as long as the dependencies don't change) COPY package.json pnpm-lock.yaml ./ +RUN npm install -g corepack@latest + RUN corepack enable pnpm && pnpm install # Copy the rest of your app's source code