mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-28 19:13:48 +00:00
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 "$@"
|