We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bd4c5 commit 923e3f1Copy full SHA for 923e3f1
Dockerfile
@@ -3,10 +3,14 @@ FROM ghcr.io/actions/actions-runner:2.329.0
3
RUN sudo apt update -y && \
4
sudo apt install -y curl make bash jq
5
6
-# Install Node.js 22 and npm 10
+# Install Node.js 22
7
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - && \
8
- sudo apt-get install -y nodejs && \
9
- sudo npm install -g npm@10
+ sudo apt-get install -y nodejs
+
10
+# Install pnpm 10
11
+RUN curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=10 sh - && \
12
+ mv /root/.local/share/pnpm/pnpm /usr/local/bin/pnpm && \
13
+ chmod +x /usr/local/bin/pnpm
14
15
# Install Docker Buildx
16
RUN BUILDX_VERSION=$(curl -s "https://api.github.com/repos/docker/buildx/releases/latest" | jq -r .tag_name) && \
0 commit comments