Garinot Pierre
Garinot Pierre
For debian: ```sh apt update && apt install xorriso && update-alternatives --install /usr/bin/mkisofs mkisofs /usr/bin/xorrisofs 10 ````
Hi, thanks for the quick response. Unfortunately, it seems the rootbeer only propose installation from google play. Since i don't have, and don't want, a google account registered on that...
Thanks, but i believe the problem is not yours to fix, as this is a know problem for /e/OS: [Is it possible to provide `user` builds instead of `userdebug`?](https://gitlab.e.foundation/e/backlog/-/issues/1402)
Just tested the following Dockerfile, everything seems to work fine. ```Dockerfile FROM bitnami/mariadb:latest USER 0:0 RUN groupadd --system --gid 100001 "mariadb" RUN useradd --system --uid 100001 --gid 100001 --home "/opt/bitnami/mariadb"...
> Consequently, any files or directories used by the application should be owned by the _root_ group, as the random user (_1001_ by default) is a member of this _root_...
In regard to the `Principle of Least Privilege`, imho, the following permissions would ensure much less exposure, while still be enough to ensure the application runs correctly: ```Dockerfile FROM bitnami/mariadb:latest...
> In our helm charts we're working on changing from 1001:root to 1001:1001 Hi, does this mean that this change will make its way to the Dockerfile?
I see, thanks for the info. Since this is not particular to mariadb, but afaik an issue concerning every non-root Dockerfile, should this issue be renamed, or another one opened?...