mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-06-16 02:45:47 +00:00
cff5e52231
Signed-off-by: Gong Sophia <sophia.gong@intel.com>
10 lines
142 B
Bash
10 lines
142 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ]; then
|
|
set -- node "$@"
|
|
fi
|
|
|
|
echo "IMAGE NAME: $NAME"
|
|
exec "$@"
|