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 src/cloud-api-adaptor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BUILD_TYPE=dev
ARG BUILDER_BASE=quay.io/confidential-containers/golang-fedora:1.24.11-41
ARG BASE=registry.fedoraproject.org/fedora:41
ARG BUILDER_BASE=quay.io/confidential-containers/golang-fedora:1.24.11-43
ARG BASE=registry.fedoraproject.org/fedora:43

# This dockerfile uses Go cross-compilation to build the binary,
# we build on the host platform ($BUILDPLATFORM) and then copy the
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-api-adaptor/podvm-mkosi/Dockerfile.mkosi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.5.0-labs
FROM fedora:41 AS builder
FROM fedora:43 AS builder

ARG MKOSI_VERSION="v22"
ARG PROFILE="debug"
Expand Down
4 changes: 2 additions & 2 deletions src/cloud-api-adaptor/podvm-mkosi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ define run_mkosi_in_container
docker run --rm --privileged \
-v "$(shell pwd)":/workspace \
-w /workspace \
fedora:41 \
bash -c "dnf install -y bubblewrap coreutils git python3; mkdir -p /build; git clone -b $(MKOSI_VERSION) https://github.com/systemd/mkosi /build/mkosi; export PATH="/build/mkosi/bin:$$PATH"; mkosi --tools-tree=default --tools-tree-release=41 $(1)"
fedora:43 \
bash -c "dnf install -y bubblewrap coreutils git python3; mkdir -p /build; git clone -b $(MKOSI_VERSION) https://github.com/systemd/mkosi /build/mkosi; export PATH="/build/mkosi/bin:$$PATH"; mkosi --tools-tree=default --tools-tree-release=43 $(1)"
endef

binaries:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Distribution=fedora

[Distribution]
Distribution=fedora
Release=41
Release=43

[Content]
CleanPackageMetadata=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ KernelCommandLine=console=ttyS0
KernelCommandLine=systemd.firstboot=off
KernelCommandLine=systemd.volatile=state
KernelCommandLine=selinux=0 enforcing=0 audit=0
KernelCommandLine=initcall_blacklist=vmgenid_plaform_driver_init

Initrds=../../build/initrd

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Distribution=fedora

[Distribution]
Distribution=fedora
Release=41
Release=43

[Content]
CleanPackageMetadata=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Build binaries for mkosi podvm image
#
FROM registry.fedoraproject.org/fedora:41 AS builder
FROM registry.fedoraproject.org/fedora:43 AS builder

ARG ARCH="x86_64"
ARG GO_ARCH="amd64"
Expand Down
Loading