add basic Docker entrypoint script

This commit is contained in:
2025-04-30 14:56:36 -05:00
parent bcce68ad1f
commit 7db559e848
3 changed files with 12 additions and 0 deletions

10
dockerfiles/entrypoint.sh Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
# output debugging info
ruby --version
printf "rubygems %s\n" "$(gem --version)"
bundle version
exec "${@}"