mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
We know we eventually want "day 2" management of kargs, but supporting "install time" kargs in a somewhat container-native way will let us more properly set up things like the `console=` karg only for cloud images for example. Signed-off-by: Colin Walters <walters@verbum.org>
12 lines
390 B
Docker
12 lines
390 B
Docker
# This Dockerfile generates a container image that installs bootc into
|
|
# a Fedora CoreOS image.
|
|
FROM quay.io/coreos-assembler/fcos-buildroot:testing-devel as builder
|
|
WORKDIR /src
|
|
COPY . .
|
|
RUN make test-bin-archive
|
|
|
|
FROM quay.io/fedora/fedora-coreos:testing-devel
|
|
COPY --from=builder /src/target/bootc.tar.zst /tmp
|
|
COPY ci/usr usr
|
|
RUN tar -xvf /tmp/bootc.tar.zst && ostree container commit
|