- make sure the user id in the image is 1000 since that is what is used
in the chart
- the user id could have also been adjusted in the chart, but 1000 is also
used for all other images
Issue-ID: SDC-4808
Change-Id: I87b7997c6ab5e8d69ff0e2ea7134924646966240
Signed-off-by: Fiete Ostkamp <fiete.ostkamp@telekom.de>
FROM eclipse-temurin:11-jre-jammy
USER root
-RUN groupadd -r sdc && useradd -r -g sdc -m sdc
+RUN groupadd -g 1000 sdc && useradd -u 1000 -g 1000 -m sdc
RUN apt-get update && \
apt-get install -y --no-install-recommends python3-pip && \