-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bf972c
commit 341e31e
Showing
3 changed files
with
122 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
|
||
FROM registry.access.redhat.com/ubi9/go-toolset:1.20.10-2.1699551725 as builder | ||
FROM registry.access.redhat.com/ubi9/go-toolset:1.21.9-1.1715774364@sha256:f001ad1001a22fe5f6fc7d876fc172b01c1b7dcd6c498f83a07b425e24275a79 as builder | ||
|
||
USER root | ||
WORKDIR /workspace | ||
COPY . . | ||
|
||
# renovate: datasource=github-releases depName=pulumi/pulumi | ||
ENV PULUMI_VERSION 3.96.2 | ||
ENV PULUMI_VERSION 3.116.1 | ||
ENV PULUMI_URL https://github.com/pulumi/pulumi/releases/download/v${PULUMI_VERSION}/pulumi-v${PULUMI_VERSION}-linux-x64.tar.gz | ||
|
||
RUN make build \ | ||
&& curl -L ${PULUMI_URL} -o pulumicli.tar.gz \ | ||
&& tar -xzvf pulumicli.tar.gz | ||
|
||
FROM registry.access.redhat.com/ubi9/ubi | ||
FROM registry.access.redhat.com/ubi9/ubi@sha256:ed84f34cd929ea6b0c247b6daef54dd79602804a32480a052951021caf429494 | ||
|
||
LABEL org.opencontainers.image.authors="Adrian Riobo<[email protected]>" | ||
|
||
|
@@ -33,17 +33,17 @@ ENV AZ_CLI_RPM https://packages.microsoft.com/rhel/9.0/prod/Packages/a/azure-cli | |
|
||
# Pulumi plugins | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-aws | ||
ARG PULUMI_AWS_VERSION=v6.18.0 | ||
ARG PULUMI_AWS_VERSION=v6.37.0 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-aws | ||
ARG PULUMI_AWSX_VERSION=v2.3.0 | ||
ARG PULUMI_AWSX_VERSION=v6.37.0 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-azure-native | ||
ARG PULUMI_AZURE_NATIVE_VERSION=v2.25.0 | ||
ARG PULUMI_AZURE_NATIVE_VERSION=v2.42.1 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-command | ||
ARG PULUMI_COMMAND_VERSION=v0.9.2 | ||
ARG PULUMI_COMMAND_VERSION=v0.11.1 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-tls | ||
ARG PULUMI_TLS_VERSION=v5.0.0 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-random | ||
ARG PULUMI_RANDOM_VERSION=v4.15.0 | ||
ARG PULUMI_RANDOM_VERSION=v4.16.1 | ||
|
||
RUN curl ${AWS_CLI_URL} -o awscliv2.zip \ | ||
&& dnf install -y unzip \ | ||
|
Oops, something went wrong.