From 672e5ed8d7e6046aae2427eee21f4fa798b96ba0 Mon Sep 17 00:00:00 2001 From: jonesho <81145364+jonesho@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:30:27 +0800 Subject: [PATCH] fix: temp fix for the corepack issue (#645) * fix: temp fix for the corepack issue * fix: move the fix line above corepack enable --- postman/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/postman/Dockerfile b/postman/Dockerfile index a627677f..4e2e2dda 100644 --- a/postman/Dockerfile +++ b/postman/Dockerfile @@ -3,6 +3,9 @@ FROM node:lts-slim AS base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" +# Temp fix for the corepack issue described in https://github.com/pnpm/pnpm/issues/9029 +RUN npm i -g corepack@latest + RUN corepack enable RUN apt-get update \