FROM       continuumio/anaconda3:4.3.1

RUN        apt-get update && apt-get install -y \
    build-essential \
    libssl-dev \
    libffi-dev

WORKDIR    /var/app
COPY       . .

# Installs everything the datalytics app itself and all it's deps.
RUN        pip install -i https://pypi.theorchard.io/pypi/ -e . --ignore-installed
