summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Wong <stephen.kf.wong@gmail.com>2018-06-15 00:23:46 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-06-15 00:23:46 +0000
commitc9fc663f04db13682b269c77ba4fffcf02c3bdb5 (patch)
tree6d967ec3ba4a2b9300f065b560c82f6b630b4085
parentd709d7b74006411fb268ada5e04bb7565f8f9bbc (diff)
parentb1dd5121ebb0acb447dff7bfe5dd388f361e6d8a (diff)
Merge "fix the sdc sample deploy issue"
-rw-r--r--docker/Dockerfile2
-rw-r--r--samples/services/nginx/docker/subservices/lb/Dockerfile2
-rw-r--r--samples/services/nginx/docker/subservices/proxy/Dockerfile2
-rw-r--r--samples/services/nginx/docker/subservices/server/Dockerfile2
-rw-r--r--samples/services/snort_ids/docker/Dockerfile2
5 files changed, 5 insertions, 5 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}
diff --git a/samples/services/nginx/docker/subservices/lb/Dockerfile b/samples/services/nginx/docker/subservices/lb/Dockerfile
index 125da0b..3b13631 100644
--- a/samples/services/nginx/docker/subservices/lb/Dockerfile
+++ b/samples/services/nginx/docker/subservices/lb/Dockerfile
@@ -20,7 +20,7 @@ RUN \
python-pip \
&& \
# Install required python packages
- python -m pip install grpcio redis jinja2
+ python -m pip install grpcio redis jinja2 protobuf
COPY /process /process
COPY /grpc /grpc
diff --git a/samples/services/nginx/docker/subservices/proxy/Dockerfile b/samples/services/nginx/docker/subservices/proxy/Dockerfile
index 0f061a5..b063de7 100644
--- a/samples/services/nginx/docker/subservices/proxy/Dockerfile
+++ b/samples/services/nginx/docker/subservices/proxy/Dockerfile
@@ -20,7 +20,7 @@ RUN \
python-pip \
&& \
# Install required python packages
- python -m pip install grpcio redis jinja2
+ python -m pip install grpcio redis jinja2 protobuf
COPY /process /process
COPY /grpc /grpc
diff --git a/samples/services/nginx/docker/subservices/server/Dockerfile b/samples/services/nginx/docker/subservices/server/Dockerfile
index 8bf9449..434a8d4 100644
--- a/samples/services/nginx/docker/subservices/server/Dockerfile
+++ b/samples/services/nginx/docker/subservices/server/Dockerfile
@@ -20,7 +20,7 @@ RUN \
python-pip \
&& \
# Install required python packages
- python -m pip install grpcio redis jinja2
+ python -m pip install grpcio redis jinja2 protobuf
COPY /process /process
COPY /grpc /grpc
diff --git a/samples/services/snort_ids/docker/Dockerfile b/samples/services/snort_ids/docker/Dockerfile
index 50686ed..697acb9 100644
--- a/samples/services/snort_ids/docker/Dockerfile
+++ b/samples/services/snort_ids/docker/Dockerfile
@@ -70,7 +70,7 @@ RUN \
ln -s libdnet.so.1.0.1 libdnet.1 \
&& \
# Install required python libraries
- python -m pip install grpcio redis idstools
+ python -m pip install grpcio redis idstools protobuf
COPY /process /process
COPY /grpc /grpc