mirror of
https://github.com/optim-enterprises-bv/fedora-coreos-config.git
synced 2026-01-16 01:31:05 +00:00
11 lines
461 B
Docker
11 lines
461 B
Docker
# This includes the build dependencies for some key packages
|
|
# such as ignition, rpm-ostree, libpod, systemd, and kernel.
|
|
# If you want another package in this list, submit a PR and
|
|
# we can probably add it.
|
|
#
|
|
# This image is used by CoreOS CI to build software like
|
|
# Ignition, rpm-ostree, ostree, coreos-installer, etc...
|
|
FROM registry.fedoraproject.org/fedora:36
|
|
COPY . /src
|
|
RUN ./src/install-buildroot.sh && yum clean all && rm /src -rf # nocache 20220119
|