FROM ubuntu:xenial
RUN apt-get update
RUN apt-get -y install python python3 locales python3-pip libmagic1
RUN locale-gen en_US.UTF-8

WORKDIR /python-magic
COPY . .
RUN python3 -m pip install tox
