22 lines
604 B
Docker
22 lines
604 B
Docker
FROM centos:7
|
|
|
|
COPY epel.repo /etc/yum.repos.d/
|
|
RUN yum -y install --nogpgcheck epel-release && \
|
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-* && \
|
|
yum -y install make libgit2-glib tito python-pylint \
|
|
python-nose python-mako python-flask \
|
|
python-coverage libselinux-python \
|
|
pykickstart python2-pytoml \
|
|
python2-mock python-semantic_version && \
|
|
yum clean all && \
|
|
rm -rf /var/cache/yum
|
|
|
|
|
|
RUN mkdir /lorax
|
|
COPY Makefile /lorax
|
|
COPY src/ /lorax/src
|
|
COPY tests/ /lorax/tests
|
|
|
|
WORKDIR /lorax
|
|
RUN make test
|