summaryrefslogtreecommitdiffstats
path: root/test/docker/centos7/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'test/docker/centos7/Dockerfile')
-rw-r--r--test/docker/centos7/Dockerfile27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/docker/centos7/Dockerfile b/test/docker/centos7/Dockerfile
new file mode 100644
index 0000000..c0611e7
--- /dev/null
+++ b/test/docker/centos7/Dockerfile
@@ -0,0 +1,27 @@
+FROM centos:7
+
+RUN set -x \
+ && sed -i -e /tsflags=nodocs/d /etc/yum.conf \
+ && yum -y install \
+ https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \
+ && yum -y upgrade \
+ && yum -y install \
+ /usr/bin/autoconf \
+ /usr/bin/automake \
+ /usr/bin/make \
+ # /usr/bin/which: https://bugzilla.redhat.com/show_bug.cgi?id=1443357 \
+ /usr/bin/which \
+ /usr/bin/xvfb-run \
+ python36-pexpect
+
+ADD test-cmd-list.txt \
+ requirements.txt \
+ docker/centos7/install-packages.sh \
+ /tmp/
+
+RUN set -x \
+ && pip3 install --prefix /usr/local -Ir /tmp/requirements.txt
+
+RUN /tmp/install-packages.sh </tmp/test-cmd-list.txt \
+ && yum -Cy clean all \
+ && rm -r /tmp/* /root/.cache/pip /var/lib/yum/history/* /var/lib/yum/yumdb/*