diff options
author | wutianwei <wutianwei1@huawei.com> | 2018-05-28 09:02:14 +0800 |
---|---|---|
committer | wutianwei <wutianwei1@huawei.com> | 2018-05-28 09:51:00 +0800 |
commit | b1dd5121ebb0acb447dff7bfe5dd388f361e6d8a (patch) | |
tree | 33256829b4222ec3b0c464102094db64dd072202 /samples/services/snort_ids | |
parent | a611041d138a71a87c12d4734e5d1a780852ecc9 (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 'samples/services/snort_ids')
-rw-r--r-- | samples/services/snort_ids/docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |