The execution files are placed inside /root, which is inaccessible by non-root users, eg: when running from an execution assistant. A quick fix is to add:
RUN chmod 577 root/
to the bottom of the Dockerfile, however adding files to /root is against best practices so I don't want to submit a pull request to do that. Wondering if there are any thoughts?
The execution files are placed inside
/root
, which is inaccessible by non-root users, eg: when running from an execution assistant. A quick fix is to add:RUN chmod 577 root/
to the bottom of the Dockerfile, however adding files to
/root
is against best practices so I don't want to submit a pull request to do that. Wondering if there are any thoughts?