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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
# 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.24.4-1752083840 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694

# 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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1774456672

# 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.24.4-1752083840 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1774456672

# 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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
# 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.24.4-1752083840 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694

# RUN microdnf -y update && microdnf -y clean all
# Required to be able to get files from within the pod
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-1771346502 AS builder
FROM quay.io/operator-framework/opm:v1.65.0 AS opm
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694 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.65.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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
# 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.24.4-1752083840 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694

# 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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
# 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.24.4-1752083840 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694

# 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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
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.24.4-1752083840 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694

# 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.7-1773073767 AS builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.7-1774917512 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-1772639305
FROM registry.access.redhat.com/ubi8/ubi:8.10-1774368078
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.24.4-1752591614 AS builder
FROM registry.redhat.io/ubi8/go-toolset:1.25.7-1774917512 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-1772599255
FROM registry.redhat.io/ubi8-minimal:8.10-1774368033

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.7-1773073767 AS builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.7-1774917512 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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
# 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.24.4-1752083840 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694

# 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-1771346502
FROM registry.access.redhat.com/ubi9-minimal:9.7-1773939694
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.24.6-1758501173 AS mtv-opa
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1771346502
FROM registry.redhat.io/ubi9-minimal:9.7-1773939694
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-1754586119 AS appliance
FROM registry.access.redhat.com/ubi9:9.7-1774415752 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.3-1766449309 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1754586119
FROM registry.access.redhat.com/ubi9:9.7-1774415752

# 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-1754586119 AS winlegacyiso
FROM registry.redhat.io/ubi9:9.7-1774415752 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-1754586119 AS appliance
FROM registry.redhat.io/ubi9:9.7-1774415752 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.3-1766449309 AS builder
FROM registry.redhat.io/ubi9/go-toolset:1.25.8-1774968108 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-1754586119 AS runtime
FROM registry.redhat.io/ubi9:9.7-1774415752 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-1771346757 AS appliance
FROM registry.access.redhat.com/ubi9:9.7-1774415752 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.7-1773088126 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1774968108 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-1771346757
FROM registry.access.redhat.com/ubi9:9.7-1774415752

# 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/Containerfile-downstream
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM registry.redhat.io/ubi9:9.7-1771346757 AS winlegacyiso
FROM registry.redhat.io/ubi9:9.7-1774415752 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.4-2.el7.2

FROM registry.redhat.io/ubi10:10.1-1772441712 AS appliance
FROM registry.redhat.io/ubi10:10.1-1774545609 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/ubi10/go-toolset:1.24.6-1763548447 AS builder
FROM registry.redhat.io/ubi10/go-toolset:1.25.8-1774917700 AS builder
USER 0
WORKDIR /app
COPY --chown=1001:0 ./ ./
Expand All @@ -34,7 +34,7 @@ RUN GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o virt-v2v-monitor github
RUN GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o image-converter github.com/kubev2v/forklift/cmd/image-converter
RUN GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o virt-v2v-wrapper github.com/kubev2v/forklift/cmd/virt-v2v

FROM registry.redhat.io/ubi10:10.1-1772441712 AS runtime
FROM registry.redhat.io/ubi10:10.1-1774545609 AS runtime

COPY --chown=1001:0 ./libguestfs-fssupport-10.1-4.el10_1.* ./

Expand Down
Loading
Loading