diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-09-11 04:05:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-11 04:05:48 +0000 |
commit | a710113a4929cf77f6c702be65d1382037236afe (patch) | |
tree | a688a7b0a80cbe13ca15f4db06cb792a6c628526 /deployment/docker | |
parent | 3cd5aa28759518c265a27abb0ff54782373957cc (diff) | |
parent | 94ce8f09c17287f2970c3370120f41749e801c56 (diff) |
Merge changes I0ce2a35f,I78097e7e
* changes:
Update docker with grpc server
VTP: Enable debug log for gRPC server
Diffstat (limited to 'deployment/docker')
-rw-r--r-- | deployment/docker/src/main/docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deployment/docker/src/main/docker/Dockerfile b/deployment/docker/src/main/docker/Dockerfile index 21630d17..0fc2a156 100644 --- a/deployment/docker/src/main/docker/Dockerfile +++ b/deployment/docker/src/main/docker/Dockerfile @@ -34,10 +34,10 @@ RUN apt-get update && apt-get install -y lighttpd git curl pandoc vim && \ apt-get purge -y pandoc && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/go /tmp/gotty /tmp/* /var/tmp/* && \ chmod +x $OPEN_CLI_HOME/bin/oclip.sh && \ chmod +x $OPEN_CLI_HOME/bin/oclip-rcli.sh && \ - chmod +x $OPEN_CLI_HOME/bin/oclip-cmdflow-server.sh && \ + chmod +x $OPEN_CLI_HOME/bin/oclip-grpc-server.sh && \ ln $OPEN_CLI_HOME/bin/oclip.sh /usr/sbin/oclip && \ ln $OPEN_CLI_HOME/bin/oclip.sh /usr/sbin/onap && \ - ln $OPEN_CLI_HOME/bin/oclip-cmdflow-server.sh /usr/sbin/oclip-grpc && \ + ln $OPEN_CLI_HOME/bin/oclip-grpc-server.sh /usr/sbin/oclip-grpc && \ ln $OPEN_CLI_HOME/bin/oclip-rcli.sh /usr/sbin/oclipr && \ if [ ! -d $OPEN_CLI_HOME/data ]; then mkdir $OPEN_CLI_HOME/data; fi && \ if [ ! -d $OPEN_CLI_HOME/open-cli-schema ]; then mkdir $OPEN_CLI_HOME/open-cli-schema; fi && \ |