summaryrefslogtreecommitdiffstats
path: root/latest/docker-entrypoint.sh
blob: 50cf5250d94d66a883e1a697aa4c73d391dd51de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

set -e

if ! whoami &> /dev/null; then
  if [ -w /etc/passwd ]; then
    echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd
  fi
fi

echo "Running: $@"
exec "$@"