blob: f9e4981c561e6bdddd924a82d5374652df256deb [file] [log] [blame]
Tommy Carpenter0581c1e2017-08-11 15:02:32 -04001FROM python:3.5
2MAINTAINER tommy@research.att.com
3
4ADD . /tmp
5
6#need pip > 8 to have internal pypi repo in requirements.txt
7RUN pip install --upgrade pip
8#do the install
9WORKDIR /tmp
10RUN pip install -e .
11
12EXPOSE 10000
13
14CMD run.py