FROM centos/python-36-centos7:1

ENV HOME /
ENV PYTHONPATH /app
ENV LANG=en_US.UTF-8

WORKDIR /app
COPY . /app/

RUN pip install --upgrade pip
RUN pip install -r requirements.txt --no-cache
RUN pip install -e .

