063a1770e1
Some of these can only run as root on a real system with access to loop devices. They are skipped when running in a container.
36 lines
634 B
Docker
36 lines
634 B
Docker
FROM registry.fedoraproject.org/fedora:rawhide
|
|
RUN dnf -y install \
|
|
anaconda-tui \
|
|
libgit2-glib \
|
|
libselinux-python3 \
|
|
make \
|
|
pykickstart \
|
|
python3-coverage \
|
|
python3-coveralls \
|
|
python3-flask \
|
|
python3-gevent \
|
|
python3-magic \
|
|
python3-mako \
|
|
python3-nose \
|
|
python3-pocketlint \
|
|
python3-pylint \
|
|
python3-pytoml \
|
|
python3-semantic_version \
|
|
python3-sphinx \
|
|
python3-rpmfluff \
|
|
python3-librepo \
|
|
beakerlib \
|
|
sudo \
|
|
tito \
|
|
rsync \
|
|
e2fsprogs \
|
|
xz-lzma-compat \
|
|
pbzip2 \
|
|
squashfs-tools \
|
|
qemu-img \
|
|
which && \
|
|
touch /.in-container
|
|
RUN useradd weldr
|
|
VOLUME /lorax
|
|
WORKDIR /lorax
|