Skip to content

Commit fdb455d

Browse files
committed
build-sys: Use stream10 by default
The rationale for having c9s by default was that it's a lower bound (which is still true). But our CI covers that; I'd rather now have the default be c10s be the default as it will be the focus of features going forward. Signed-off-by: Colin Walters <[email protected]>
1 parent 81ac60b commit fdb455d

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Dockerfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
# Build this project from source and drop the updated content on to
2-
# a bootc container image. By default we use CentOS Stream 9 as a base;
3-
# use e.g. --build-arg=base=quay.io/fedora/fedora-bootc:41 to target
1+
# Build this project from source and write the updated content
2+
# (i.e. /usr/bin/bootc and systemd units) to a new derived container
3+
# image. See the `Justfile` for an example
4+
#
5+
# Use e.g. --build-arg=base=quay.io/fedora/fedora-bootc:42 to target
46
# Fedora instead.
57

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

10+
# This first image captures a snapshot of the source code,
11+
# note all the exclusions in .dockerignore.
812
FROM scratch as src
913
COPY . /src
1014

@@ -37,7 +41,7 @@ EORUN
3741

3842
# This image installs build deps, pulls in our source code, and installs updated
3943
# bootc binaries in /out. The intention is that the target rootfs is extracted from /out
40-
# back into a final stae (without the build deps etc) below.
44+
# back into a final stage (without the build deps etc) below.
4145
FROM base as build
4246
# Flip this off to disable initramfs code
4347
ARG initramfs=1

0 commit comments

Comments
 (0)