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 69f13c3 commit 913b252Copy full SHA for 913b252
Dockerfile
@@ -5,8 +5,10 @@ RUN sudo apt update -y && \
5
6
# Install Node.js 22 & pnpm 10
7
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - && \
8
- sudo apt-get install -y nodejs && \
9
- npm install -g pnpm@10
+ sudo apt-get install -y nodejs
+
10
+# Install pnpm 10
11
+RUN npm install -g pnpm@10
12
13
# Install Docker Buildx
14
RUN BUILDX_VERSION=$(curl -s "https://api.github.com/repos/docker/buildx/releases/latest" | jq -r .tag_name) && \
0 commit comments