added node in docker image

This commit is contained in:
2025-06-08 10:12:34 +02:00
parent e7ddfe9fcb
commit 2aa3a793d3
2 changed files with 144 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -e
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ] || { [ -f "${1}" ] && ! [ -x "${1}" ]; }; then
set -- /usr/local/bin/bun "$@"
fi
exec "$@"