diff --git a/images/custom/Containerfile b/images/custom/Containerfile index e0c5b335..febc72b9 100644 --- a/images/custom/Containerfile +++ b/images/custom/Containerfile @@ -49,6 +49,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 \ diff --git a/images/production/Containerfile b/images/production/Containerfile index 4dfb8685..48df0d9d 100644 --- a/images/production/Containerfile +++ b/images/production/Containerfile @@ -45,6 +45,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 \