diff --git a/gitea-runner/NodeWithPnpmLatestDockerfile b/gitea-runner/NodeWithPnpmLatestDockerfile index c369a06..f90e71b 100644 --- a/gitea-runner/NodeWithPnpmLatestDockerfile +++ b/gitea-runner/NodeWithPnpmLatestDockerfile @@ -3,4 +3,9 @@ FROM fascinated/docker-images:node-latest # Install pnpm RUN npm install -g pnpm -#ENV PNPM_HOME=/home/pnpm \ No newline at end of file +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