Skip to content

Commit

Permalink
Update corepack (#391)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
julienp authored Jan 31, 2025
1 parent 58a8226 commit ef101a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## Unreleased

- Update corepack
([391](https://github.com/pulumi/pulumi-docker-containers/pull/391))

## 3.147.0

- Add ARM64 version of the kitchen sink and provider build environment images
Expand Down
3 changes: 2 additions & 1 deletion docker/pulumi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ RUN fnm install 18 && \
fnm install 23 && \
fnm alias 22 default
ENV PATH=/usr/local/share/fnm/aliases/default/bin:$PATH
RUN corepack install --global pnpm yarn
RUN npm install -g corepack && \
corepack install -g pnpm yarn

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

0 comments on commit ef101a0

Please sign in to comment.