FROM ubuntu:17.10
# Update
RUN apt-get update
RUN apt-get install -y python3.5
RUN apt-get install -y python3-pip

# Install app dependencies
RUN python3.5 -m pip install pip==9.0.1
RUN python3.5 -m pip install virtualenv==15.1.0
