Skip to content

Commit c81373e

Browse files
chore(deps): update all dockerfile non-major dependencies
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent da2daf4 commit c81373e

31 files changed

+63
-63
lines changed

build/forklift-api/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1773088126 AS builder
1+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774618347 AS builder
22
USER 0
33
WORKDIR /app
44
COPY --chown=1001:0 ./ ./
@@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
77
ENV GOCACHE=/go-build/cache
88
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o forklift-api github.com/kubev2v/forklift/cmd/forklift-api
99

10-
FROM registry.access.redhat.com/ubi9-minimal:9.7-1771346502
10+
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
1111
# Required to be able to get files from within the pod
1212
RUN microdnf -y install tar && microdnf clean all
1313
COPY --from=builder /app/forklift-api /usr/local/bin/forklift-api

build/forklift-api/Containerfile-downstream

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:1.24.4-1752083840 AS builder
1+
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774618347 AS builder
22
USER 0
33
WORKDIR /app
44
COPY --chown=1001:0 ./ ./
@@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
77
ENV GOCACHE=/go-build/cache
88
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o forklift-api github.com/kubev2v/forklift/cmd/forklift-api
99

10-
FROM registry.redhat.io/ubi9-minimal:9.7-1771346502
10+
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694
1111

1212
# Required to be able to get files from within the pod
1313
RUN microdnf -y install tar && microdnf clean all

build/forklift-cli-download/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1773088126 AS builder
2+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774618347 AS builder
33

44
USER 0
55
WORKDIR /app
@@ -12,7 +12,7 @@ WORKDIR /app/cmd/kubectl-mtv
1212
RUN --mount=type=cache,target=${GOCACHE},uid=1001 make build-all
1313

1414
# Nginx serving stage
15-
FROM registry.access.redhat.com/ubi9/nginx-126:1-1772411898
15+
FROM registry.access.redhat.com/ubi9/nginx-126:1-1774456672
1616

1717
# Copy binaries directly from build stage
1818
COPY --from=builder /app/cmd/kubectl-mtv/bin /opt/app-root/src/

build/forklift-cli-download/Containerfile-downstream

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM registry.redhat.io/ubi9/go-toolset:1.24.4-1752083840 AS builder
2+
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774618347 AS builder
33

44
USER 0
55
WORKDIR /app
@@ -13,7 +13,7 @@ WORKDIR /app/cmd/kubectl-mtv
1313
RUN --mount=type=cache,target=${GOCACHE},uid=1001 make build-all
1414

1515
# Nginx serving stage
16-
FROM registry.redhat.io/ubi9/nginx-126:1-1756959223
16+
FROM registry.redhat.io/ubi9/nginx-126:1-1774456672
1717

1818
# Copy binaries directly from build stage
1919
COPY --from=builder /app/cmd/kubectl-mtv/bin /opt/app-root/src/

build/forklift-controller/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1773088126 AS builder
1+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774618347 AS builder
22
USER 0
33
WORKDIR /app
44
COPY --chown=1001:0 ./ ./
@@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
77
ENV GOCACHE=/go-build/cache
88
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o manager github.com/kubev2v/forklift/cmd/forklift-controller
99

10-
FROM registry.access.redhat.com/ubi9-minimal:9.7-1771346502
10+
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
1111
# RUN microdnf -y update && microdnf -y clean all
1212
# Required to be able to get files from within the pod
1313
RUN microdnf -y install tar && microdnf clean all

build/forklift-controller/Containerfile-downstream

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:1.24.4-1752083840 AS builder
1+
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774618347 AS builder
22

33
USER 0
44
RUN dnf -y install libvirt-devel
@@ -10,7 +10,7 @@ ENV GOEXPERIMENT=strictfipsruntime
1010
ENV GOCACHE=/go-build/cache
1111
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o manager github.com/kubev2v/forklift/cmd/forklift-controller
1212

13-
FROM registry.redhat.io/ubi9-minimal:9.7-1771346502
13+
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694
1414

1515
# RUN microdnf -y update && microdnf -y clean all
1616
# Required to be able to get files from within the pod

build/forklift-operator-index/Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# The OPM 1.53.0 has problem, once there will be new version with the fix we can bump to latest.
22
# https://github.com/operator-framework/operator-registry/pull/1664
33
# Ref: https://redhat-internal.slack.com/archives/C074JM28DTP/p1746458556603619
4-
FROM quay.io/operator-framework/opm:v1.64.0 AS opm
5-
FROM registry.access.redhat.com/ubi9-minimal:9.7-1771346502 AS builder
4+
FROM quay.io/operator-framework/opm:v1.65.0 AS opm
5+
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694 AS builder
66
ARG CHANNELS="development"
77
ARG DEFAULT_CHANNEL="development"
88
ARG VERSION="99.0.0"
@@ -18,7 +18,7 @@ WORKDIR /app
1818
RUN cat catalog/operator.yml | envsubst > operator.yaml
1919
RUN opm render ${OPERATOR_BUNDLE_IMAGE} ${OPM_OPTS} -o yaml >> operator.yaml
2020

21-
FROM quay.io/operator-framework/opm:v1.64.0
21+
FROM quay.io/operator-framework/opm:v1.65.0
2222

2323
COPY --from=builder /app/operator.yaml /configs/operator.yaml
2424

build/openstack-populator/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1773088126 AS builder
1+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774618347 AS builder
22
USER 0
33
WORKDIR /app
44
COPY --chown=1001:0 ./ ./
@@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
77
ENV GOCACHE=/go-build/cache
88
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o openstack-populator github.com/kubev2v/forklift/cmd/openstack-populator
99

10-
FROM registry.access.redhat.com/ubi9-minimal:9.7-1771346502
10+
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
1111
# Required to be able to get files from within the pod
1212
RUN microdnf -y install tar && microdnf clean all
1313

build/openstack-populator/Containerfile-downstream

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:1.24.4-1752083840 AS builder
1+
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774618347 AS builder
22
USER 0
33
WORKDIR /app
44
COPY --chown=1001:0 ./ ./
@@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
77
ENV GOCACHE=/go-build/cache
88
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o openstack-populator github.com/kubev2v/forklift/cmd/openstack-populator
99

10-
FROM registry.redhat.io/ubi9-minimal:9.7-1771346502
10+
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694
1111

1212
# Required to be able to get files from within the pod
1313
RUN microdnf -y install tar && microdnf clean all

build/ova-provider-server/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1773088126 AS builder
1+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774618347 AS builder
22
USER 0
33
WORKDIR /app
44
COPY --chown=1001:0 ./ ./
@@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
77
ENV GOCACHE=/go-build/cache
88
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o ova-provider-server github.com/kubev2v/forklift/cmd/ova-provider-server
99

10-
FROM registry.access.redhat.com/ubi9-minimal:9.7-1771346502
10+
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
1111
# Required to be able to get files from within the pod
1212
RUN microdnf -y install tar && microdnf clean all
1313

0 commit comments

Comments
 (0)