blob: 7ca987fa927fb0f891968d2c5b824c480bd1158a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
FROM python:3.6
MAINTAINER tommy@research.att.com
ADD . /tmp
RUN pip install --upgrade pip
WORKDIR /tmp
#do the install
RUN pip install .
EXPOSE 10000
RUN mkdir -p /opt/logs/
CMD run.py
|