blob: 10f170a04a48c5132464bce3379164e1c20482f6 (
plain)
1
2
3
4
5
6
7
8
9
|
FROM centos:7
RUN yum -y update
RUN yum -y install file-devel python3 python2 which
WORKDIR /python-magic
COPY . .
RUN python3 -m pip install tox
ENV SKIP_FROM_DESCRIPTOR=1
CMD python3 -m tox
|