Skip to content

Commit 5bb0425

Browse files
committed
chore(ci): fix scripts
1 parent 913b252 commit 5bb0425

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ RUN curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - && \
88
sudo apt-get install -y nodejs
99

1010
# Install pnpm 10
11-
RUN npm install -g pnpm@10
11+
RUN PNPM_VERSION="10.9.0" && \
12+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v${PNPM_VERSION}/pnpm-linuxstatic-x64" -o /usr/local/bin/pnpm && \
13+
chmod +x /usr/local/bin/pnpm
1214

1315
# Install Docker Buildx
1416
RUN BUILDX_VERSION=$(curl -s "https://api.github.com/repos/docker/buildx/releases/latest" | jq -r .tag_name) && \

0 commit comments

Comments
 (0)