-
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
52de247
commit 33cae7b
Showing
2 changed files
with
46 additions
and
46 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.19.10-14.1695131433 as builder | ||
FROM registry.access.redhat.com/ubi9/go-toolset:1.19.10-14.1695131433@sha256:d55ff49e9b6907d5f50290f8bcffa15657470da009a5f982202780c4122ce2dd as builder | ||
|
||
USER root | ||
WORKDIR /workspace | ||
COPY . . | ||
|
||
# renovate: datasource=github-releases depName=pulumi/pulumi | ||
ENV PULUMI_VERSION 3.86.0 | ||
ENV PULUMI_VERSION v3.92.0 | ||
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:2f168398c538b287fd705519b83cd5b604dc277ef3d9f479c28a2adb4d830a49 | ||
|
||
LABEL org.opencontainers.image.authors="Adrian Riobo<[email protected]>" | ||
|
||
|
@@ -33,9 +33,9 @@ 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.2.0 | ||
ARG PULUMI_AWS_VERSION=v6.7.0 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-azure-native | ||
ARG PULUMI_AZURE_NATIVE_VERSION=v2.8.0 | ||
ARG PULUMI_AZURE_NATIVE_VERSION=v2.15.0 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-command | ||
ARG PULUMI_COMMAND_VERSION=v0.9.0 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-tls | ||
|