centos8 316 B

1234567891011
  1. FROM centos:8
  2. RUN yum -y update
  3. RUN yum -y install file-libs python3 python2 which glibc-locale-source
  4. RUN yum reinstall glibc-common -y && \
  5. localedef -i en_US -f UTF-8 en_US.UTF-8 && \
  6. echo "LANG=en_US.UTF-8" > /etc/locale.conf
  7. WORKDIR /python-magic
  8. COPY . .
  9. RUN python3 -m pip install tox
  10. CMD python3 -m tox