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 f747e0c commit 0585cd7Copy full SHA for 0585cd7
base/Dockerfile
@@ -97,10 +97,13 @@ RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
97
RUN apt-get install -y nodejs
98
99
# Install Yarn and other packages
100
-RUN npm install --global --force npm@10.9.3 yarn watch-cli typescript
+RUN npm install --global --force corepack@latest npm@10.9.3 yarn watch-cli typescript
101
+
102
+# enable corepack
103
+RUN corepack enable pnpm
104
105
# Install pnpm
-RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" env PNPM_VERSION=10.17.1 sh -
106
+RUN corepack use pnpm@10.17.1
107
108
# Clean up
109
RUN apt-get clean && \
0 commit comments