diff options
author | Tommy Carpenter <tommy@research.att.com> | 2018-03-20 21:39:55 -0400 |
---|---|---|
committer | Tommy Carpenter <tommy@research.att.com> | 2018-03-20 21:40:00 -0400 |
commit | 5a2c655866279df5547c2d8b8159afeceb285ee9 (patch) | |
tree | 9639a7ff6adbe499a37a2a65fb7e38617d2262e5 /Dockerfile | |
parent | 226719d5b23c7b82940a0e4c5b6922eead419788 (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-- | Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |