aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: f9e4981c561e6bdddd924a82d5374652df256deb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.5
MAINTAINER tommy@research.att.com

ADD . /tmp

#need pip > 8 to have internal pypi repo in requirements.txt
RUN pip install --upgrade pip 
#do the install
WORKDIR /tmp
RUN pip install -e .

EXPOSE 10000

CMD run.py