26 lines
498 B
Plaintext
26 lines
498 B
Plaintext
|
FROM centos:7
|
||
|
LABEL \
|
||
|
name="Pungi test" \
|
||
|
description="Run tests using tox with Python 2" \
|
||
|
vendor="Pungi developers" \
|
||
|
license="MIT"
|
||
|
|
||
|
RUN yum -y update && yum -y install \
|
||
|
git \
|
||
|
make \
|
||
|
python3 \
|
||
|
python-gssapi \
|
||
|
python-libcomps \
|
||
|
python-createrepo_c \
|
||
|
pykickstart \
|
||
|
&& yum clean all
|
||
|
|
||
|
# python-tox in yum repo is too old, let's install latest version
|
||
|
RUN pip3 install tox
|
||
|
|
||
|
WORKDIR /src
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
CMD ["tox", "-e", "py27"]
|