From 6d56595d380d96258847a828b4a0448f792ee508 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Wed, 6 Dec 2023 17:19:10 +0800 Subject: [PATCH] ci: add back pnpm to debian Docker images (#1841) - Close https://github.com/napi-rs/napi-rs/issues/1840 --- debian-aarch64.Dockerfile | 2 +- debian.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian-aarch64.Dockerfile b/debian-aarch64.Dockerfile index 5752ff62..1a87edbe 100644 --- a/debian-aarch64.Dockerfile +++ b/debian-aarch64.Dockerfile @@ -35,7 +35,7 @@ RUN apt-get update && \ apt-get autoremove -y && \ curl https://sh.rustup.rs -sSf | sh -s -- -y && \ rustup target add aarch64-unknown-linux-gnu && \ - npm install -g npm yarn && \ + npm install -g npm yarn pnpm && \ ln -sf /usr/bin/clang-16 /usr/bin/clang && \ ln -sf /usr/bin/clang++-16 /usr/bin/clang++ && \ ln -sf /usr/bin/lld-16 /usr/bin/lld && \ diff --git a/debian.Dockerfile b/debian.Dockerfile index 96f7c8ab..314bfe8b 100644 --- a/debian.Dockerfile +++ b/debian.Dockerfile @@ -36,7 +36,7 @@ RUN apt-get update && \ ninja-build && \ apt-get autoremove -y && \ curl https://sh.rustup.rs -sSf | sh -s -- -y && \ - npm install -g npm yarn && \ + npm install -g npm yarn pnpm && \ ln -sf /usr/bin/clang-16 /usr/bin/clang && \ ln -sf /usr/bin/clang++-16 /usr/bin/clang++ && \ ln -sf /usr/bin/lld-16 /usr/bin/lld && \