summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorwutianwei <wutianwei1@huawei.com>2018-05-28 09:02:14 +0800
committerwutianwei <wutianwei1@huawei.com>2018-05-28 09:51:00 +0800
commitb1dd5121ebb0acb447dff7bfe5dd388f361e6d8a (patch)
tree33256829b4222ec3b0c464102094db64dd072202 /docker/Dockerfile
parenta611041d138a71a87c12d4734e5d1a780852ecc9 (diff)
fix the sdc sample deploy issue
there is a issue "No module named google.protobuf", when trying to run the services docker. Add the protobuf in services Dockerfile. Change-Id: I280dc1d5908bcec784e9e1e7c4d07e145f092cdb Signed-off-by: wutianwei <wutianwei1@huawei.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r--docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 2cd6340..5cc7323 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -20,7 +20,7 @@ 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 \
- && python -m pip install grpcio argparse
+ && python -m pip install grpcio argparse protobuf
# Fetch source code
RUN mkdir -p ${REPOS_DIR}