mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
17 lines
353 B
Bash
Executable File
17 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if test "$(id -u)" == "0" -a "${USER_ID}" != ""; then
|
|
useradd -u "${USER_ID}" -d /home/user -s /bin/bash "${USER_NAME:-default}"
|
|
chown -R "${USER_NAME:-default}" "${GOCACHE}"
|
|
fi
|
|
|
|
export PATH=$PATH:/usr/local/go/bin:/go/bin
|
|
export GOROOT=/usr/local/go
|
|
|
|
if test "$$" = "1"; then
|
|
exec tini -- "$@"
|
|
else
|
|
exec "$@"
|
|
fi
|