From 13fa6815029103e807fdf74819d2399eb90e6143 Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 16 Nov 2023 13:35:48 +0000 Subject: [PATCH] fix? --- gitea-runner/NodeWithPnpmLatestDockerfile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/gitea-runner/NodeWithPnpmLatestDockerfile b/gitea-runner/NodeWithPnpmLatestDockerfile index f90e71b..1bf706f 100644 --- a/gitea-runner/NodeWithPnpmLatestDockerfile +++ b/gitea-runner/NodeWithPnpmLatestDockerfile @@ -3,9 +3,7 @@ FROM fascinated/docker-images:node-latest # Install pnpm RUN npm install -g pnpm -RUN pnpm config set store-dir .pnpm-store -RUN mkdir -p .pnpm-glob -RUN mkdir -p .pnpm-bin -RUN pnpm config set global-dir .pnpm-glob -RUN pnpm config set global-bin-dir .pnpm-bin -RUN export PATH=".pnpm-bin:$PATH" \ No newline at end of file +RUN pnpm config set store-dir .pnpm-store && \ + pnpm config set global-dir .pnpm-glob && \ + pnpm config set global-bin-dir .pnpm-bin && \ + export PATH=".pnpm-bin:$PATH" \ No newline at end of file