Skip to content

Commit ef101a0

Browse files
authored
Update corepack (#391)
The corepack version that is currently shipping with Node.js releases fails to install the latest release of pnpm due to missing an updated signature key. Update the corepack version to the latest available. Fixes #390
1 parent 58a8226 commit ef101a0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## Unreleased
4+
5+
- Update corepack
6+
([391](https://github.com/pulumi/pulumi-docker-containers/pull/391))
7+
38
## 3.147.0
49

510
- Add ARM64 version of the kitchen sink and provider build environment images

docker/pulumi/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ RUN fnm install 18 && \
162162
fnm install 23 && \
163163
fnm alias 22 default
164164
ENV PATH=/usr/local/share/fnm/aliases/default/bin:$PATH
165-
RUN corepack install --global pnpm yarn
165+
RUN npm install -g corepack && \
166+
corepack install -g pnpm yarn
166167

167168
# Passing --build-arg PULUMI_VERSION=vX.Y.Z will use that version
168169
# of the SDK. Otherwise, we use whatever get.pulumi.com thinks is

0 commit comments

Comments
 (0)