From 2f7b22007e585b6817c16e979af9019fbbc60542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lo=C3=AFse=20Joffe?= Date: Wed, 24 Jun 2026 16:02:39 +0200 Subject: [PATCH] feat: add pre-run-hook in entrypoint --- containers/entrypoint.sh | 4 ++++ 1 file changed, 4 insertions(+) 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 "$@"