Files
dockerfiles/node/docker-entrypoint.sh
Liu, Jianjun 08f2098d00 add docker_entrypoint as official
Signed-off-by: Liu, Jianjun <jianjun.liu@intel.com>
2019-09-10 10:42:30 +08:00

9 lines
117 B
Bash

#!/bin/sh
set -e
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ]; then
set -- node "$@"
fi
exec "$@"