centos7 194 B

123456789
  1. FROM centos:7
  2. RUN yum -y update
  3. RUN yum -y install file-devel python3 python2 which
  4. WORKDIR /python-magic
  5. COPY . .
  6. RUN python3 -m pip install tox
  7. ENV SKIP_FROM_DESCRIPTOR=1
  8. CMD python3 -m tox