lorax/Dockerfile.test

36 lines
670 B
Docker
Raw Permalink Normal View History

2018-05-16 18:07:56 +00:00
FROM fedora:28
2018-09-25 09:32:20 +00:00
RUN dnf -y install \
anaconda-tui \
libgit2-glib \
libselinux-python3 \
make \
pykickstart \
python3-coverage \
python3-coveralls \
python3-flask \
python3-gevent \
python3-mako \
python3-nose \
python3-pocketlint \
python3-pylint \
python3-pytoml \
python3-semantic_version \
python3-sphinx \
python3-rpmfluff \
beakerlib \
2018-09-25 09:32:20 +00:00
sudo \
tito \
which
RUN useradd weldr
RUN mkdir /lorax
COPY . /lorax
# remove byte-compiled files to avoid issues between Python 2/3
# this can happen when you switch between rhel7 and master branches
RUN find /lorax -name "*.pyc" -exec rm -f {} \;
WORKDIR /lorax
2018-09-25 09:32:20 +00:00
RUN make check test