From bf967cdca9ee085b7c28be8cfbbc3564150e0daa Mon Sep 17 00:00:00 2001 From: Ivan Date: Thu, 16 Apr 2026 20:42:03 -0500 Subject: [PATCH] chore(docker): replace corepack with npm for pnpm installation in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f134d7..fb70329 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ FROM ${NODE_IMAGE}@${NODE_HASH} AS build-frontend WORKDIR /src COPY package.json pnpm-lock.yaml vite.config.js tailwind.config.js postcss.config.js ./ COPY meshchatx/src/frontend ./meshchatx/src/frontend -RUN corepack enable && corepack prepare pnpm@10.32.1 --activate && \ +RUN npm install -g pnpm@10.32.1 && \ pnpm install --frozen-lockfile && \ pnpm run build-frontend