Skip to content

Commit 04c7e7d

Browse files
committed
Enable soft reboots by default
1 parent 7a50319 commit 04c7e7d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# use e.g. --build-arg=base=quay.io/fedora/fedora-bootc:41 to target
44
# Fedora instead.
55

6-
ARG base=quay.io/centos-bootc/centos-bootc:stream9
6+
ARG base=quay.io/centos-bootc/centos-bootc:stream10
77

88
FROM scratch as src
99
COPY . /src
@@ -23,6 +23,8 @@ case $ID in
2323
centos|rhel) dnf config-manager --set-enabled crb;;
2424
fedora) dnf -y install dnf-utils 'dnf5-command(builddep)';;
2525
esac
26+
# Hot patch
27+
dnf -y install https://kojihub.stream.centos.org/kojifiles/packages/ostree/2025.3/1.el10/$(arch)/ostree-{libs-,devel-,}2025.3-1.el10.$(arch).rpm
2628
dnf -y builddep /tmp/bootc.spec
2729
# Extra dependencies
2830
dnf -y install git-core

crates/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ similar-asserts = { workspace = true }
6363
static_assertions = { workspace = true }
6464

6565
[features]
66-
default = ["install-to-disk"]
66+
default = ["install-to-disk", "ostree-2025-3"]
6767
# This feature enables `bootc install to-disk`, which is considered just a "demo"
6868
# or reference installer; we expect most nontrivial use cases to be using
6969
# `bootc install to-filesystem`.

0 commit comments

Comments
 (0)