summaryrefslogtreecommitdiff
path: root/docker/entrypoint.sh
diff options
context:
space:
mode:
authorsarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-21 11:19:25 +0100
committersarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-21 13:14:20 +0100
commit41033fae9a44bd22367304a7cf47a19cdb947929 (patch)
treede597c9fcaed3d8d6671924b6461a4a1f24d066d /docker/entrypoint.sh
parentdf13175a2e37d12fad7ed8a60d92faac1428ddf2 (diff)
downloadvyos-build-41033fae9a44bd22367304a7cf47a19cdb947929.tar.gz
vyos-build-41033fae9a44bd22367304a7cf47a19cdb947929.zip
debian: T5003: Fix docker entrypoint
Diffstat (limited to 'docker/entrypoint.sh')
-rwxr-xr-xdocker/entrypoint.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
index 8db41103..adc7264c 100755
--- a/docker/entrypoint.sh
+++ b/docker/entrypoint.sh
@@ -24,9 +24,11 @@ if ! grep -q $NEW_GID /etc/group; then
fi
useradd --shell /bin/bash --uid $NEW_UID --gid $NEW_GID --non-unique --create-home $USER_NAME
-usermod --append --groups sudo $USER_NAME
-sudo chown $NEW_UID:$NEW_GID /home/$USER_NAME
export HOME=/home/$USER_NAME
+if [ "$(id -u)" == "0" ]; then
+ exec gosu $USER_NAME "$@"
+fi
+
# Execute process
-exec /usr/sbin/gosu $USER_NAME "$@"
+exec "$@"