From f5598cd5e217534ab5d0eb0f2b7ea7df24f60f8d Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 11 Feb 2026 17:00:48 +0100 Subject: [PATCH 1/2] fix: enable pnpm via corepack for apps that require it (e.g. drive) --- images/custom/Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/images/custom/Containerfile b/images/custom/Containerfile index 97b9906e..a4a9ca51 100644 --- a/images/custom/Containerfile +++ b/images/custom/Containerfile @@ -46,6 +46,7 @@ RUN useradd -ms /bin/bash frappe \ && nvm install ${NODE_VERSION} \ && nvm use v${NODE_VERSION} \ && npm install -g yarn \ + && corepack enable pnpm \ && nvm alias default v${NODE_VERSION} \ && rm -rf ${NVM_DIR}/.cache \ && echo 'export NVM_DIR="/home/frappe/.nvm"' >>/home/frappe/.bashrc \ From ef3eba6ac96d4711f21421407427b1b8a07f6897 Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 22 Apr 2026 11:44:03 +0200 Subject: [PATCH 2/2] enable pnpm via corepack in prod containerfil --- images/production/Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/images/production/Containerfile b/images/production/Containerfile index abebba86..47703d66 100644 --- a/images/production/Containerfile +++ b/images/production/Containerfile @@ -43,6 +43,7 @@ RUN useradd -ms /bin/bash frappe \ && nvm install ${NODE_VERSION} \ && nvm use v${NODE_VERSION} \ && npm install -g yarn \ + && corepack enable pnpm \ && nvm alias default v${NODE_VERSION} \ && rm -rf ${NVM_DIR}/.cache \ && echo 'export NVM_DIR="/home/frappe/.nvm"' >>/home/frappe/.bashrc \