From d27e1d9a2726b4711f3c730f4cf5e17fbc13f50c Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Tue, 26 May 2026 12:08:25 -0700 Subject: [PATCH] fix: install pnpm in Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index c07b5f0..1633c6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,6 +67,9 @@ RUN tar -xf node.tar.xz \ ENV PATH="/home/sqlcipher/node/bin:${PATH}" +# Install pnpm +RUN npm install -g pnpm@10.18.1 + # And finally any bonus packages we're going to need # Note that we jump back to root for this. USER root