From 2c52dbcea3187fbc70a29a433839971844e47219 Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sun, 23 Jun 2024 23:47:52 +0500 Subject: [PATCH] build: install pnpm for all platforms --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e2884cdc..cabac1f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,11 @@ RUN \ 'linux/arm64' | 'linux/arm/v7') \ apk update && \ apk add --no-cache python3 make g++ gcc libc6-compat bash && \ - npm install -g pnpm \ ;; \ esac +Run npm install --global pnpm + COPY package.json pnpm-lock.yaml ./ RUN CYPRESS_INSTALL_BINARY=0 pnpm install --frozen-lockfile --network-timeout 1000000