Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
releases can no longer be installed that way.
([#681](https://github.com/pulumi/pulumi-docker-containers/pull/681))

- Add yq to the go, java, nodejs, python, and dotnet runtime Docker images
([#756](https://github.com/pulumi/pulumi-docker-containers/pull/756))

- Add yq to the `pulumi/pulumi` container
([#756](https://github.com/pulumi/pulumi-docker-containers/pull/756))

## 3.234

- Include `pulumi-language-bun` in the nodejs images so the Bun language runtime
Expand Down
3 changes: 2 additions & 1 deletion docker/dotnet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ ARG LANGUAGE_VERSION
RUN apt-get update -y && \
apt-get install -y \
git \
curl
curl \
yq

# Install dotnet using instructions from:
# https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script
Expand Down
1 change: 1 addition & 0 deletions docker/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ RUN --mount=target=/var/lib/apt/lists,type=cache \
apt-get install -y \
curl \
git \
yq \
ca-certificates; \
mkdir -p /go

Expand Down
1 change: 1 addition & 0 deletions docker/java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ RUN apt-get update -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
curl \
git \
yq \
openjdk-21-jdk \
maven \
gradle && \
Expand Down
1 change: 1 addition & 0 deletions docker/nodejs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ RUN apt-get update -y && \
apt-get install -y \
curl \
git \
yq \
ca-certificates && \
npm install -g npm@${NPM_VERSION} bun pnpm@^10 corepack && \
corepack install -g yarn@1
Expand Down
1 change: 1 addition & 0 deletions docker/pulumi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ RUN apt-get update -y && \
unzip \
wget \
xz-utils \
yq \
zlib1g-dev && \
rm -rf /var/lib/apt/lists/*

Expand Down
1 change: 1 addition & 0 deletions docker/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ RUN apt-get update -y && \
apt-get install -y \
curl \
git \
yq \
ca-certificates

# Install poetry
Expand Down
Loading