diff --git a/containers/entrypoint.sh b/containers/entrypoint.sh index 1aa19199f..626ae667a 100755 --- a/containers/entrypoint.sh +++ b/containers/entrypoint.sh @@ -3,4 +3,8 @@ set -e source /activate.sh +if [ -f "/pre-run-hook.sh" ]; then + source /pre-run-hook.sh +fi + exec "$@"