Skip to content

Commit

Permalink
fix: added correct permissions to docker file (#4734)
Browse files Browse the repository at this point in the history
fix: added correct permisions to docker file
  • Loading branch information
GregoryIvo authored Jun 26, 2023
1 parent 393fea1 commit cae7d38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ RUN chmod a+x -R /usr/local/bin && \
apk --no-cache add dos2unix openssl net-tools which busybox-extras && \
apk --no-cache add bluez bluez-deprecated chrony eudev glib psmisc socat && \
/kura-install/kura_*_docker-x86_64-nn_installer.sh && \
chmod a+rw -R /opt/eclipse && \
chmod -R go-rwx /opt/eclipse && \
chmod a+rx /opt/eclipse && \
find /opt/eclipse -type d | xargs chmod a+x && \
chmod a+rwx /var/log && \
`# Test for the existence of the entry point` \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ RUN true && \
&& \
microdnf -y clean all && rm -rf /var/cache/yum && \
/kura-install/kura_*_docker-x86_64-nn_installer.sh && rm -rf /kura-install/ && \
chmod a+rw -R /opt/eclipse && \
chmod -R go-rwx /opt/eclipse && \
chmod a+rx /opt/eclipse && \
find /opt/eclipse -type d | xargs chmod a+x && \
chmod a+rwx /var/log && \
`# Test for the existence of the entry point` \
Expand Down

0 comments on commit cae7d38

Please sign in to comment.