ubi: fix uid/gid to 999

This facilitates and upgrade from mysql container where that is the uid used.
This commit is contained in:
Daniel Black 2024-05-17 18:26:36 +10:00
parent cf5f74c9d4
commit 7a882afa49

View File

@ -1,6 +1,10 @@
FROM redhat/ubi9
RUN groupadd -r mysql && useradd -r -g mysql mysql
# systemd-coredump has the uid 999, input has group 999, that we want to use for compatibility with the ubuntu image.
RUN groupdel input && \
userdel systemd-coredump && \
groupadd --gid 999 -r mysql && \
useradd -r -g mysql mysql --home-dir /var/lib/mysql --uid 999
ARG TARGETARCH
ENV GOSU_VERSION 1.17