We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb5cb9 commit 8240fc7Copy full SHA for 8240fc7
testing-tools/Dockerfile
@@ -69,8 +69,17 @@ ln -s /stackable/keycloak-${KEYCLOAK_VERSION} /stackable/keycloak
69
70
pip install --no-cache-dir --upgrade pip
71
pip install --no-cache-dir -r /stackable/python/requirements.txt
72
-groupadd -r ${STACKABLE_USER_NAME} --gid=${STACKABLE_USER_GID}
73
-useradd -r -g ${STACKABLE_USER_NAME} --uid=${STACKABLE_USER_UID} ${STACKABLE_USER_NAME}
+
+groupadd --gid ${STACKABLE_USER_GID} --system ${STACKABLE_USER_NAME}
74
+useradd \
75
+ --no-log-init \
76
+ --gid ${STACKABLE_USER_GID} \
77
+ --uid ${STACKABLE_USER_UID} \
78
+ --system \
79
+ --create-home \
80
+ --home-dir /stackable \
81
+ ${STACKABLE_USER_NAME}
82
83
chown -R ${STACKABLE_USER_UID}:0 /stackable
84
EOF
85
0 commit comments