fix(dockerfile): correct PNPM_HOME and PATH for pnpm installation

This commit is contained in:
2026-05-20 18:35:00 +00:00
parent 63ed57a00f
commit 5fc5efbb1c
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -109,9 +109,9 @@ SHELL ["/usr/local/bin/bash-with-nvm"]
ENV BASH_ENV=/etc/bash.bashrc
# prepare pnpm
ENV PNPM_HOME="/root/.local/share/pnpm/pnpm"
ENV PNPM_HOME="/root/.local/share/pnpm"
RUN mkdir -p ${PNPM_HOME}
ENV PATH="$PNPM_HOME:$PATH"
ENV PATH="$PNPM_HOME/bin:$PATH"
# Now nvm is available directly without sourcing
RUN nvm install $NODE_VERSION_STABLE \
+6
View File
@@ -8,6 +8,12 @@
- set DENO_INSTALL and update PATH so Deno binaries are available by default
- install curl and run the official Deno installer during image build
### Fixes
- correct PNPM_HOME and PATH for pnpm installation (dockerfile)
- Set PNPM_HOME to the pnpm base directory instead of the nested pnpm path
- Update PATH to include the pnpm bin directory so pnpm is available at runtime
## 2026-04-02 - 5.9.1 - fix(scripts)
rename release script to release:docker