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

COPY . /tmp
WORKDIR /tmp

RUN pip install --upgrade pip
RUN pip install . 
RUN mkdir -p /opt/logs/
EXPOSE 10000

ENV PROD_LOGGING 1

CMD run.py