summaryrefslogtreecommitdiff
path: root/test/docker/centos7
diff options
context:
space:
mode:
Diffstat (limited to 'test/docker/centos7')
-rw-r--r--test/docker/centos78
1 files changed, 6 insertions, 2 deletions
diff --git a/test/docker/centos7 b/test/docker/centos7
index f2ac6e4..10f170a 100644
--- a/test/docker/centos7
+++ b/test/docker/centos7
@@ -1,5 +1,9 @@
FROM centos:7
RUN yum -y update
RUN yum -y install file-devel python3 python2 which
-COPY . /python-magic
-CMD cd /python-magic/test && SKIP_FROM_DESCRIPTOR=1 python3 ./run.py
+WORKDIR /python-magic
+COPY . .
+RUN python3 -m pip install tox
+ENV SKIP_FROM_DESCRIPTOR=1
+CMD python3 -m tox
+