Skip to content

Commit 92920e9

Browse files
committed
fix: standardize image references in Konflux container files
Use floating tags in Dockerfiles. Signed-off-by: Edgar Hernández <23639005+israel-hdez@users.noreply.github.com>
1 parent 50337bf commit 92920e9

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfiles/localmodel-agent.Dockerfile.konflux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM registry.redhat.io/ubi9/go-toolset@sha256:d637b9dfccb16623f19b95c43fe5a65b20b722e62753c4445c5d02f9e40b807d AS deps
2+
FROM registry.redhat.io/ubi9/go-toolset:1.25 AS deps
33
# distro: UBI go-toolset does not add GOPATH/bin to PATH
44
ENV PATH="$PATH:/opt/app-root/src/go/bin"
55

@@ -36,7 +36,7 @@ COPY pkg/ pkg/
3636
COPY LICENSE LICENSE
3737

3838
# Copy the controller-manager into a thin image
39-
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:175bafd5bc7893540ed6234bb979acfe3574fd6570e6762bbc527c757f854cea
39+
FROM registry.redhat.io/ubi9/ubi-minimal:latest
4040

4141
RUN microdnf install -y --disablerepo=* --enablerepo=ubi-9-baseos-rpms shadow-utils && \
4242
microdnf clean all && \

Dockerfiles/localmodel.Dockerfile.konflux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM registry.redhat.io/ubi9/go-toolset@sha256:d637b9dfccb16623f19b95c43fe5a65b20b722e62753c4445c5d02f9e40b807d AS deps
2+
FROM registry.redhat.io/ubi9/go-toolset:1.25 AS deps
33
# distro: UBI go-toolset does not add GOPATH/bin to PATH
44
ENV PATH="$PATH:/opt/app-root/src/go/bin"
55

@@ -35,7 +35,7 @@ COPY pkg/ pkg/
3535
COPY LICENSE LICENSE
3636

3737
# Copy the controller-manager into a thin image
38-
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:175bafd5bc7893540ed6234bb979acfe3574fd6570e6762bbc527c757f854cea
38+
FROM registry.redhat.io/ubi9/ubi-minimal:latest
3939

4040
RUN microdnf install -y --disablerepo=* --enablerepo=ubi-9-baseos-rpms shadow-utils && \
4141
microdnf clean all && \

0 commit comments

Comments
 (0)