From b1dd5121ebb0acb447dff7bfe5dd388f361e6d8a Mon Sep 17 00:00:00 2001 From: wutianwei Date: Mon, 28 May 2018 09:02:14 +0800 Subject: 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 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker/Dockerfile') 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} -- cgit 1.2.3-korg