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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# When rebasing to new Fedora, also update openshift/release:
# https://github.com/openshift/release/tree/master/ci-operator/config/coreos/coreos-assembler/coreos-coreos-assembler-main.yaml
FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43
WORKDIR /root/containerbuild
# This variable is enabled by Konflux to build the container image hermatically.
ARG NO_NETWORK=0
Expand Down
5 changes: 3 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ patch_osbuild() {
# To make it easier to apply patches we'll move around the osbuild
# code on the system first:
rmdir /usr/lib/osbuild/osbuild
mv /usr/lib/python3.13/site-packages/osbuild /usr/lib/osbuild/
python_lib_dir=$(ls -d /usr/lib/python*)
mv ${python_lib_dir}/site-packages/osbuild /usr/lib/osbuild/
mkdir -p /usr/lib/osbuild/tools
mv /usr/bin/osbuild-mpp /usr/lib/osbuild/tools/

Expand All @@ -214,7 +215,7 @@ patch_osbuild() {
# And then move the files back; supermin appliance creation will need it back
# in the places delivered by the RPM.
mv /usr/lib/osbuild/tools/osbuild-mpp /usr/bin/osbuild-mpp
mv /usr/lib/osbuild/osbuild /usr/lib/python3.13/site-packages/osbuild
mv /usr/lib/osbuild/osbuild ${python_lib_dir}/site-packages/osbuild
mkdir -p /usr/lib/osbuild/osbuild
}

Expand Down
2 changes: 1 addition & 1 deletion tests/containers/nfs/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43

RUN dnf -y install /usr/bin/ps nfs-utils && dnf clean all && rm -rf /var/cache/yum

Expand Down
2 changes: 1 addition & 1 deletion tests/containers/tang/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43

RUN dnf -y install systemd tang && dnf clean all && rm -rf /var/cache/yum
EXPOSE 80
Expand Down
2 changes: 1 addition & 1 deletion tests/containers/targetcli/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43

RUN dnf install -y targetcli kmod && dnf clean all
RUN systemctl enable target
Expand Down
Loading