aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorTommy Carpenter <tommy@research.att.com>2018-03-20 21:39:55 -0400
committerTommy Carpenter <tommy@research.att.com>2018-03-20 21:40:00 -0400
commit5a2c655866279df5547c2d8b8159afeceb285ee9 (patch)
tree9639a7ff6adbe499a37a2a65fb7e38617d2262e5 /Dockerfile
parent226719d5b23c7b82940a0e4c5b6922eead419788 (diff)
Small pythonic cleanups
Change-Id: I6be2306e8f42694e6fa8b1d37a07e48730b505ef Issue-ID: DCAEGEN2-348 Signed-off-by: Tommy Carpenter <tommy@research.att.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 35b5d52..7ca987f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,11 +3,10 @@ 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 .
+#do the install
+RUN pip install .
EXPOSE 10000