From 0fcce96a175531ec6042cde1b11a0052aa261dd5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 19:43:34 +0200 Subject: Adding upstream version 1.3.2. Signed-off-by: Daniel Baumann --- tests/docker-centos-7/Dockerfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/docker-centos-7/Dockerfile (limited to 'tests/docker-centos-7/Dockerfile') diff --git a/tests/docker-centos-7/Dockerfile b/tests/docker-centos-7/Dockerfile new file mode 100644 index 0000000..fdf1814 --- /dev/null +++ b/tests/docker-centos-7/Dockerfile @@ -0,0 +1,25 @@ +FROM centos:7 + +RUN yum -y install epel-release +RUN yum -y install \ + git \ + python-yaml \ + python-pip \ + pytest \ + python34-yaml \ + python34-pytest \ + python34-pip \ + findutils + +COPY / /src +RUN find /src -name \*.pyc -delete + +ENV PYTEST2 py.test +ENV PYTEST3 py.test-3 + +ENV PIP2 pip2 +ENV PIP3 pip3 + +WORKDIR /src + +CMD ["./tests/docker-centos-7/run.sh"] -- cgit v1.2.3