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 5bb0425 commit e75533bCopy full SHA for e75533b
Dockerfile
@@ -8,9 +8,8 @@ RUN curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - && \
8
sudo apt-get install -y nodejs
9
10
# Install 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
+RUN corepack enable && \
+ corepack prepare [email protected] --activate
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