Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docker/base/Dockerfile.ubi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:experimental
FROM redhat/ubi9-minimal:latest as builder
ARG PULUMI_VERSION
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
make \
gcc \
git \
Expand All @@ -17,7 +17,7 @@ LABEL org.opencontainers.image.description="Pulumi CLI container, bring your own
WORKDIR /pulumi
COPY --from=builder /root/.pulumi/bin bin

RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
git \
tar \
ca-certificates
Expand Down
4 changes: 2 additions & 2 deletions docker/dotnet/Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Interim container so we can copy pulumi binaries
FROM redhat/ubi9-minimal:latest as builder
ARG PULUMI_VERSION
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
gzip \
tar
# Install the Pulumi SDK, including the CLI and language runtimes.
Expand All @@ -14,7 +14,7 @@ ARG LANGUAGE_VERSION
LABEL org.opencontainers.image.description="Pulumi CLI container for dotnet"
WORKDIR /pulumi/projects

RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
ca-certificates \
# Required by the dotnet-install script, which calls `find`:
findutils \
Expand Down
4 changes: 2 additions & 2 deletions docker/go/Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Interim container so we can copy pulumi binaries
FROM redhat/ubi9-minimal:latest as builder
ARG PULUMI_VERSION
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
gzip \
tar
# Install the Pulumi SDK, including the CLI and language runtimes.
Expand All @@ -27,7 +27,7 @@ LABEL org.opencontainers.image.description="Pulumi CLI container for go"
WORKDIR /pulumi/projects

# Install needed tools, like git
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
git \
tar \
ca-certificates; \
Expand Down
4 changes: 2 additions & 2 deletions docker/java/Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Must be defined first
FROM redhat/ubi9-minimal:latest as builder
ARG PULUMI_VERSION
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
git \
tar \
unzip
Expand All @@ -19,7 +19,7 @@ WORKDIR /pulumi/projects
ENV MAVEN_VERSION 3.9.10
ENV GRADLE_VERSION 8.14.2

RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
git \
tar \
java-21-openjdk-devel \
Expand Down
4 changes: 2 additions & 2 deletions docker/nodejs/Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Interim container so we can copy pulumi binaries
FROM redhat/ubi9-minimal:latest as builder
ARG PULUMI_VERSION
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
gzip \
tar
# Install the Pulumi SDK, including the CLI and language runtimes.
Expand All @@ -14,7 +14,7 @@ ARG LANGUAGE_VERSION
LABEL org.opencontainers.image.description="Pulumi CLI container for nodejs"
WORKDIR /pulumi/projects

RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
ca-certificates \
git \
tar \
Expand Down
4 changes: 2 additions & 2 deletions docker/python/Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Interim container so we can copy pulumi binaries
FROM redhat/ubi9-minimal:latest as builder
ARG PULUMI_VERSION
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
gzip \
tar
# Install the Pulumi SDK, including the CLI and language runtimes.
Expand All @@ -15,7 +15,7 @@ LABEL org.opencontainers.image.description="Pulumi CLI container for python"
WORKDIR /pulumi/projects

# Install needed tools, like git, and build dependencies
RUN microdnf install -y \
RUN microdnf upgrade -y && microdnf install -y \
bzip2 \
bzip2-devel \
ca-certificates \
Expand Down
Loading