From f791a86ac4a1a5b46f9e82ab3762c278d3a413ec Mon Sep 17 00:00:00 2001 From: Harry Tang Date: Thu, 16 Jan 2025 13:23:29 +0200 Subject: [PATCH] Update Dockerfile --- dockerfiles/node20/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dockerfiles/node20/Dockerfile b/dockerfiles/node20/Dockerfile index e43bd59..45d4d20 100644 --- a/dockerfiles/node20/Dockerfile +++ b/dockerfiles/node20/Dockerfile @@ -1,7 +1,4 @@ FROM node:20-alpine # Install common tools and upgrade NPM -RUN apk add --no-cache git openssh && npm install -g npm - -# Install PNPM -RUN /usr/bin/wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - +RUN apk add --no-cache git openssh && npm install -g npm && npm install -g pnpm@latest-10