- 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>
 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}