fix: correctly set path for pnpm binary

This commit is contained in:
2026-05-12 14:48:06 +02:00
parent ef22be50ea
commit 9179457d00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
FROM node:alpine AS base
ENV PNPM_HOME="./.pnpm"
ENV PATH="/.pnpm:$PATH"
ENV PATH="/.pnpm/bin:$PATH"
RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - &&\
apk add --no-cache openssl
USER root