Files
bun-src/dockerhub/debian-slim/docker-entrypoint.sh
T

9 lines
171 B
Bash
Raw Normal View History

2026-08-27 21:09:14 +00:00
#!/bin/sh
set -e
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ] || { [ -f "${1}" ] && ! [ -x "${1}" ]; }; then
set -- /usr/local/bin/bun "$@"
fi
exec "$@"