c7ba2e6231
Related: rhbz#1636207
15 lines
434 B
Docker
15 lines
434 B
Docker
FROM registry.fedoraproject.org/fedora:29
|
|
|
|
RUN dnf -y install make libgit2-glib tito python3-pylint \
|
|
python3-nose python3-mako python3-flask \
|
|
python3-coverage libselinux-python3 sudo \
|
|
pykickstart python3-pytoml python3-sphinx \
|
|
python3-semantic_version \
|
|
anaconda-tui
|
|
|
|
RUN mkdir /lorax
|
|
COPY . /lorax
|
|
|
|
WORKDIR /lorax
|
|
RUN make test
|