bionic 215 B

123456789
  1. FROM ubuntu:bionic
  2. WORKDIR /python-magic
  3. COPY . .
  4. RUN apt-get update
  5. RUN apt-get -y install python python3 locales python3-pip libmagic1
  6. RUN locale-gen en_US.UTF-8
  7. RUN python3 -m pip install tox
  8. CMD python3 -m tox