# Use prebuild python environment
FROM python:3


RUN apt-get update && apt-get install -y \
    python3-pip

RUN \ 
    pip3 install --no-cache-dir Cython

RUN pip3 install --no-cache-dir numpy==1.16.0 pkgconfig==1.4.0 python-igraph==0.7.1.post6 pytz==2018.9 scikit-learn==0.20.2 scipy==1.2.0 six==1.12.0 sklearn==0.0

RUN pip3 install --no-cache-dir POT==0.5.1 

# Set working directory
WORKDIR /ICML2019

# Copy requirements.txt
COPY . /ICML2019
# Install pipenv 
#RUN pip install --trusted-host pypi.org -r requirements.txt
