fix: install pnpm in Dockerfile

This commit is contained in:
Fedor Indutny 2026-05-26 12:08:25 -07:00
parent 19eb15285d
commit d27e1d9a27

View File

@ -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