22 lines
480 B
Docker
22 lines
480 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-org/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"]
|