From 48f478272ec0afba035e170713235c092dc3203f Mon Sep 17 00:00:00 2001 From: bennetrr Date: Fri, 19 Apr 2024 18:41:20 +0200 Subject: [PATCH] fix: Dockerfile --- src/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/entrypoint.sh b/src/entrypoint.sh index f7dc38a..0573f7f 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -4,4 +4,5 @@ sh -c "git config --global --add safe.directory $PWD" # Run the python application and pass the arguments -poetry run python /action/get_release_version_action/app.py $@ +cd /action/get_release_version_action +poetry run python app.py $@