diff options
author | Rashmi Pujar <rashmi.pujar@bell.ca> | 2017-03-07 15:42:51 -0500 |
---|---|---|
committer | Rashmi Pujar <rashmi.pujar@bell.ca> | 2017-03-07 15:42:51 -0500 |
commit | 2430e07d833e366c50f758bbee09cca863220940 (patch) | |
tree | 1267e3634ad56b8e4165089ffd7c0275f8fb382e | |
parent | f7ff28dad35ae9f99e88790232246ec8778d700e (diff) |
Grant permissions to *.sh from dockerfile
chmod from exec-maven-plugin in pom file doesn't grant file permission.
Hence, changing it directly from the Dockerfile.
Change-Id: Ic152f5d881e294ae53c11e67391b6892fee4b6a7
Signed-off-by: Rashmi Pujar <rashmi.pujar@bell.ca>
Former-commit-id: 8c4f00ab3215d98e81e9480447696db59f36080e
-rw-r--r-- | installation/sdnc/src/main/docker/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/installation/sdnc/src/main/docker/Dockerfile b/installation/sdnc/src/main/docker/Dockerfile index 2e2140bc..f6edceeb 100644 --- a/installation/sdnc/src/main/docker/Dockerfile +++ b/installation/sdnc/src/main/docker/Dockerfile @@ -15,6 +15,7 @@ COPY idmlight.db.mv.db /opt/opendaylight/current # copy openecomp COPY opt /opt RUN ln -s /opt/openecomp/sdnc /opt/sdnc +RUN chmod +x /opt/openecomp/sdnc/bin/* # workaround till we get proxy working COPY mysql.tgz /tmp |