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 \