blob: 1163e9f4f00e7505c13180a757fc11989aa23647 [file] [log] [blame]
Tommy Carpenter44693e82017-10-17 09:59:35 -04001FROM python:3.6
Tommy Carpenter0581c1e2017-08-11 15:02:32 -04002MAINTAINER 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