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

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 "$@"