Skip to content
Open
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 build/forklift-api/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621
# Required to be able to get files from within the pod
RUN microdnf -y install tar && microdnf clean all
COPY --from=builder /app/forklift-api /usr/local/bin/forklift-api
Expand Down
4 changes: 2 additions & 2 deletions build/forklift-api/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.redhat.io/ubi9-minimal:9.7-1778562320
FROM registry.redhat.io/ubi9-minimal:9.8-1785906621

# Required to be able to get files from within the pod
RUN microdnf -y install tar && microdnf clean all
Expand Down
4 changes: 2 additions & 2 deletions build/forklift-cli-download/Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder

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

# Nginx serving stage
FROM registry.access.redhat.com/ubi9/nginx-126:1-1772411898
FROM registry.access.redhat.com/ubi9/nginx-126:1-1785715914

# Copy binaries directly from build stage
COPY --from=builder /app/cmd/kubectl-mtv/bin /opt/app-root/src/
Expand Down
4 changes: 2 additions & 2 deletions build/forklift-cli-download/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder

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

# Nginx serving stage
FROM registry.redhat.io/ubi9/nginx-126:1-1756959223
FROM registry.redhat.io/ubi9/nginx-126:1-1785715914

# Copy binaries directly from build stage
COPY --from=builder /app/cmd/kubectl-mtv/bin /opt/app-root/src/
Expand Down
4 changes: 2 additions & 2 deletions build/forklift-controller/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621
# RUN microdnf -y update && microdnf -y clean all
# Required to be able to get files from within the pod
RUN microdnf -y install tar && microdnf clean all
Expand Down
4 changes: 2 additions & 2 deletions build/forklift-controller/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder

USER 0
RUN dnf -y install libvirt-devel
Expand All @@ -10,7 +10,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.redhat.io/ubi9-minimal:9.7-1778562320
FROM registry.redhat.io/ubi9-minimal:9.8-1785906621

# RUN microdnf -y update && microdnf -y clean all
# Required to be able to get files from within the pod
Expand Down
2 changes: 1 addition & 1 deletion build/forklift-operator-bundle/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/konflux-ci/operator-sdk-builder@sha256:2737ff035f3a6d94e189cd31e7653998525c52f4d4db994ba1874a3a74bb4912 as builder
FROM quay.io/konflux-ci/operator-sdk-builder@sha256:bd34ca58b2d08e8ee3b9cdf46b32f69173084ca09c1d3aba47285e2c35b4d1fc as builder

ARG STREAM=downstream
ARG VERSION="2.7.0"
Expand Down
6 changes: 3 additions & 3 deletions build/forklift-operator-index/Containerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# The OPM 1.53.0 has problem, once there will be new version with the fix we can bump to latest.
# https://github.com/operator-framework/operator-registry/pull/1664
# Ref: https://redhat-internal.slack.com/archives/C074JM28DTP/p1746458556603619
FROM quay.io/operator-framework/opm:v1.64.0 AS opm
FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320 AS builder
FROM quay.io/operator-framework/opm:v1.73.0 AS opm
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621 AS builder
ARG CHANNELS="development"
ARG DEFAULT_CHANNEL="development"
ARG VERSION="99.0.0"
Expand All @@ -18,7 +18,7 @@ WORKDIR /app
RUN cat catalog/operator.yml | envsubst > operator.yaml
RUN opm render ${OPERATOR_BUNDLE_IMAGE} ${OPM_OPTS} -o yaml >> operator.yaml

FROM quay.io/operator-framework/opm:v1.64.0
FROM quay.io/operator-framework/opm:v1.73.0

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

Expand Down
4 changes: 2 additions & 2 deletions build/openstack-populator/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621
# Required to be able to get files from within the pod
RUN microdnf -y install tar && microdnf clean all

Expand Down
4 changes: 2 additions & 2 deletions build/openstack-populator/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.redhat.io/ubi9-minimal:9.7-1778562320
FROM registry.redhat.io/ubi9-minimal:9.8-1785906621

# Required to be able to get files from within the pod
RUN microdnf -y install tar && microdnf clean all
Expand Down
4 changes: 2 additions & 2 deletions build/ova-provider-server/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621
# Required to be able to get files from within the pod
RUN microdnf -y install tar && microdnf clean all

Expand Down
4 changes: 2 additions & 2 deletions build/ova-provider-server/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
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

FROM registry.redhat.io/ubi9-minimal:9.7-1778562320
FROM registry.redhat.io/ubi9-minimal:9.8-1785906621

# RUN microdnf -y update && microdnf -y clean all
# Required to be able to get files from within the pod
Expand Down
4 changes: 2 additions & 2 deletions build/ova-proxy/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -8,7 +8,7 @@ ENV GOCACHE=/go-build/cache
RUN echo $(ls)
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o proxy github.com/kubev2v/forklift/cmd/ova-proxy

FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621
COPY --from=builder /app/proxy /usr/local/bin/ova-proxy
ENTRYPOINT ["/usr/local/bin/ova-proxy"]

Expand Down
4 changes: 2 additions & 2 deletions build/ova-proxy/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o proxy github.com/kubev2v/forklift/cmd/ova-proxy

FROM registry.redhat.io/ubi9-minimal:9.7-1778562320
FROM registry.redhat.io/ubi9-minimal:9.8-1785906621

# RUN microdnf -y update && microdnf -y clean all
# Required to be able to get files from within the pod
Expand Down
4 changes: 2 additions & 2 deletions build/ovirt-populator/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.9-1778589418 AS builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.26.5-1785949833 AS builder
ENV GOPATH=$APP_ROOT
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -o ovirt-populator github.com/kubev2v/forklift/cmd/ovirt-populator

FROM registry.access.redhat.com/ubi8/ubi:8.10-1778062799
FROM registry.access.redhat.com/ubi8/ubi:8.10-1785749648
COPY --from=builder /app/ovirt-populator /usr/local/bin/ovirt-populator
RUN subscription-manager refresh && \
dnf install -y python3-ovirt-engine-sdk4 ovirt-imageio-client && dnf clean all
Expand Down
4 changes: 2 additions & 2 deletions build/ovirt-populator/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi8/go-toolset:1.25.9-1778589418 AS builder
FROM registry.redhat.io/ubi8/go-toolset:1.26.5-1785949833 AS builder
USER 0
ENV GOPATH=$APP_ROOT
WORKDIR /app
Expand All @@ -8,7 +8,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -o ovirt-populator github.com/kubev2v/forklift/cmd/ovirt-populator

FROM registry.redhat.io/ubi8-minimal:8.10-1778576163
FROM registry.redhat.io/ubi8-minimal:8.10-1785825911

COPY --from=builder /app/ovirt-populator /usr/local/bin/ovirt-populator
RUN microdnf install -y python3-ovirt-engine-sdk4 ovirt-imageio-client
Expand Down
2 changes: 1 addition & 1 deletion build/ovirt-populator/Containerfile-upstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.9-1778589418 AS builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.26.5-1785949833 AS builder
ENV GOPATH=$APP_ROOT
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand Down
4 changes: 2 additions & 2 deletions build/populator-controller/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o controller github.com/kubev2v/forklift/cmd/populator-controller

FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621
# Required to be able to get files from within the pod
RUN microdnf -y install tar && microdnf clean all

Expand Down
4 changes: 2 additions & 2 deletions build/populator-controller/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -7,7 +7,7 @@ ENV GOEXPERIMENT=strictfipsruntime
ENV GOCACHE=/go-build/cache
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o controller github.com/kubev2v/forklift/cmd/populator-controller

FROM registry.redhat.io/ubi9-minimal:9.7-1778562320
FROM registry.redhat.io/ubi9-minimal:9.8-1785906621

# RUN microdnf -y update && microdnf -y clean all
# Required to be able to get files from within the pod
Expand Down
2 changes: 1 addition & 1 deletion build/validation/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9-minimal:9.7-1778562320
FROM registry.access.redhat.com/ubi9-minimal:9.8-1785906621
RUN curl -L https://github.com/open-policy-agent/opa/releases/download/v1.8.0/opa_linux_amd64 > /usr/bin/opa
RUN chmod +x /usr/bin/opa
COPY validation/policies /usr/share/opa/policies/
Expand Down
4 changes: 2 additions & 2 deletions build/validation/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS mtv-opa
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS mtv-opa
USER 0
WORKDIR /app/opa
ENV GOFLAGS="-tags=strictfipsruntime"
Expand All @@ -9,7 +9,7 @@ COPY .konflux/validation/go.sum go.sum

RUN GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o /tmp/opa github.com/open-policy-agent/opa

FROM registry.redhat.io/ubi9-minimal:9.7-1778562320
FROM registry.redhat.io/ubi9-minimal:9.8-1785906621
WORKDIR /app
COPY --chown=1001:0 ./ ./

Expand Down
6 changes: 3 additions & 3 deletions build/virt-v2v-rhel9/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9:9.6-1760340943 AS appliance
FROM registry.access.redhat.com/ubi9:9.8-1785906690 AS appliance

RUN subscription-manager refresh && \
dnf install -y --setopt=install_weak_deps=False \
Expand All @@ -18,7 +18,7 @@ RUN mkdir -p /usr/local/lib/guestfs/appliance && \
qemu-img convert -c -O qcow2 root root.qcow2 && \
mv -vf root.qcow2 root

FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=${GOCACHE},uid=1001 go build -buildvcs=false -ldfl
RUN --mount=type=cache,target=${GOCACHE},uid=1001 go build -buildvcs=false -ldflags="-w -s" -o image-converter github.com/kubev2v/forklift/cmd/image-converter
RUN --mount=type=cache,target=${GOCACHE},uid=1001 go build -buildvcs=false -ldflags="-w -s" -o virt-v2v-wrapper github.com/kubev2v/forklift/cmd/virt-v2v

FROM registry.access.redhat.com/ubi9:9.6-1760340943
FROM registry.access.redhat.com/ubi9:9.8-1785906690

# RUN rm /etc/pki/tls/fips_local.cnf && \
# echo -e '[fips_sect]\ntls1-prf-ems-check = 0\nactivate = 1' > /etc/pki/tls/fips_local.cnf && \
Expand Down
8 changes: 4 additions & 4 deletions build/virt-v2v-rhel9/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM registry.redhat.io/ubi9:9.6-1760340943 AS winlegacyiso
FROM registry.redhat.io/ubi9:9.8-1785906690 AS winlegacyiso

RUN rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
RUN yum install -y --setopt=install_weak_deps=False virtio-win-1.9.12-4.el7

FROM registry.redhat.io/ubi9:9.6-1760340943 AS appliance
FROM registry.redhat.io/ubi9:9.8-1785906690 AS appliance

RUN dnf update -y && \
dnf install -y --setopt=install_weak_deps=False \
Expand All @@ -23,7 +23,7 @@ RUN mkdir -p /usr/local/lib/guestfs/appliance && \
qemu-img convert -c -O qcow2 root root.qcow2 && \
mv -vf root.qcow2 root

FROM registry.redhat.io/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
RUN dnf install -y libvirt-devel
WORKDIR /app
Expand All @@ -35,7 +35,7 @@ RUN GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o virt-v2
RUN GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o image-converter github.com/kubev2v/forklift/cmd/image-converter
RUN GOOS=linux GOARCH=amd64 go build -buildvcs=false -ldflags="-w -s" -o virt-v2v-wrapper github.com/kubev2v/forklift/cmd/virt-v2v

FROM registry.redhat.io/ubi9:9.6-1760340943 AS runtime
FROM registry.redhat.io/ubi9:9.8-1785906690 AS runtime

RUN rm /etc/pki/tls/fips_local.cnf && \
echo -e '[fips_sect]\ntls1-prf-ems-check = 0\nactivate = 1' > /etc/pki/tls/fips_local.cnf && \
Expand Down
6 changes: 3 additions & 3 deletions build/virt-v2v/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9:9.7-1778576335 AS appliance
FROM registry.access.redhat.com/ubi9:9.8-1785906690 AS appliance

RUN subscription-manager refresh && \
dnf install -y --setopt=install_weak_deps=False \
Expand All @@ -18,7 +18,7 @@ RUN mkdir -p /usr/local/lib/guestfs/appliance && \
qemu-img convert -c -O qcow2 root root.qcow2 && \
mv -vf root.qcow2 root

FROM registry.access.redhat.com/ubi9/go-toolset:1.25.9-1778604137 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.26.5-1785791459 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go bui
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o image-converter github.com/kubev2v/forklift/cmd/image-converter
RUN --mount=type=cache,target=${GOCACHE},uid=1001 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o virt-v2v-wrapper github.com/kubev2v/forklift/cmd/virt-v2v

FROM registry.access.redhat.com/ubi9:9.7-1778576335
FROM registry.access.redhat.com/ubi9:9.8-1785906690

# RUN rm /etc/pki/tls/fips_local.cnf && \
# echo -e '[fips_sect]\ntls1-prf-ems-check = 0\nactivate = 1' > /etc/pki/tls/fips_local.cnf && \
Expand Down
Loading
Loading