summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddie Arrage <eddie.arrage@huawei.com>2018-04-16 17:07:54 +0000
committerEddie Arrage <eddie.arrage@huawei.com>2018-04-16 17:10:59 +0000
commit80fdd62a4b3fdadc87f7bea879052db027162113 (patch)
treec77cb0756d17930db5bb4dcef394928fc379b8af
parent2208c1dbef93cb46e862bb7ce6b6d8e0a7541304 (diff)
Added dependent python packages to Clover container
- Added pip grpcio and argparse packages to docker build - Allows service (nginx/snort) client sample scripts to be executed using the Clover container without having to clone the repo Change-Id: Ifeda6d58a9a381cb80372255f41ad703a089ea4b Signed-off-by: Eddie Arrage <eddie.arrage@huawei.com>
-rw-r--r--docker/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index daed730..e4041e7 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -20,7 +20,8 @@ ENV CLOVER_REPO_DIR="${REPOS_DIR}/clover"
RUN apt-get update \
&& apt-get install -y git python-setuptools python-pip curl apt-transport-https \
&& apt-get -y autoremove && apt-get clean \
- && pip install --upgrade pip
+ && pip install --upgrade pip \
+ && python -m pip install grpcio argparse
# Fetch source code
RUN mkdir -p ${REPOS_DIR}