diff options
author | Jim Hahn <jrh3@att.com> | 2019-06-05 09:06:36 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-06-05 09:21:57 -0400 |
commit | 2af8ab7ce69fba12631dd4bc51acb2cd892dc7c0 (patch) | |
tree | 43e8627734c611fd64ff3a748f02b363bec488e2 /packages/policy-xacmlpdp-docker | |
parent | 3f0bbaeaa19c44d23f0e06968175b799d9eb5b96 (diff) |
Fix xacml docker chmod
The chmod in the docker builder for my local VM does not appear to
support the "+x" style options. Modified the xacml docker
file to use "755" instead.
Change-Id: I6cba12e62d84f626e03b3aee33d50d71faa602c4
Issue-ID: POLICY-1829
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'packages/policy-xacmlpdp-docker')
-rw-r--r-- | packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile b/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile index 21e311e1..ea3b97f8 100644 --- a/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile +++ b/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile @@ -18,7 +18,7 @@ RUN tar xvfz /packages/policy-xacmlpdp.tar.gz --directory ${POLICY_HOME} && \ WORKDIR ${POLICY_HOME} COPY policy-pdpx.sh bin/. -RUN chown -R policy:policy * && chmod +x bin/*.sh +RUN chown -R policy:policy * && chmod 755 bin/*.sh USER policy WORKDIR ${POLICY_HOME}/bin |