veilor-os/build/Containerfile
veilor d44e9bbdd9 ci: github actions workflow (build-iso + lint), CONTRIBUTING, CODEOWNERS, PR template
CI builds in fresh Fedora 43 container — matched pcre2/libselinux/selinux-policy
versions, no fix-repo hack needed. Container starts every run from clean
state, no zombie collisions. Fastest path to first green ISO.
2026-04-30 13:56:03 +01:00

22 lines
476 B
Docker

FROM registry.fedoraproject.org/fedora:43
LABEL org.opencontainers.image.title="veilor-os build env"
LABEL org.opencontainers.image.source="https://github.com/veilor/veilor-os"
RUN dnf install -y \
lorax \
livecd-tools \
pykickstart \
anaconda-tui \
squashfs-tools \
xorriso \
genisoimage \
syslinux \
rsync \
git \
which \
&& dnf clean all
WORKDIR /work
ENTRYPOINT ["/bin/bash"]