From 9179457d0065a384a2c2359cbb4d3fd23d0dff27 Mon Sep 17 00:00:00 2001 From: Lukas | AstroGD Date: Tue, 12 May 2026 14:48:06 +0200 Subject: [PATCH] fix: correctly set path for pnpm binary --- latest/Dockerfile | 2 +- lts/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/latest/Dockerfile b/latest/Dockerfile index 216b6c2..9b7e944 100644 --- a/latest/Dockerfile +++ b/latest/Dockerfile @@ -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 \ No newline at end of file diff --git a/lts/Dockerfile b/lts/Dockerfile index 6377b74..933e8ae 100644 --- a/lts/Dockerfile +++ b/lts/Dockerfile @@ -1,6 +1,6 @@ FROM node:lts-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 \ No newline at end of file