Mercurial > hg-stable
changeset 48889:234aaf0184f3 stable
docker: avoid /tmp write access issues by fixing permissions
author | Mathias De Mare <mathias.de_mare@nokia.com> |
---|---|
date | Wed, 08 Jun 2022 14:03:23 +0200 |
parents | 51b07ac1991c |
children | ec3f88480dbf 127d33e63d1a |
files | contrib/packaging/docker/rhel8 |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/packaging/docker/rhel8 Sat Jun 04 02:39:38 2022 +0200 +++ b/contrib/packaging/docker/rhel8 Wed Jun 08 14:03:23 2022 +0200 @@ -16,3 +16,6 @@ # For rust extensions RUN yum install -y cargo + +# avoid incorrect docker image permissions on /tmp preventing writes by non-root users +RUN chmod 1777 /tmp