# HG changeset patch # User Mathias De Mare # Date 1654689803 -7200 # Node ID 234aaf0184f3022b10e459bc17883d5408ec85a5 # Parent 51b07ac1991c9a8b4e7aea021889097d04442095 docker: avoid /tmp write access issues by fixing permissions diff -r 51b07ac1991c -r 234aaf0184f3 contrib/packaging/docker/rhel8 --- 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