From 4f3e0095cf218c8e62d23b28e62f298536d2065e Mon Sep 17 00:00:00 2001 From: howardt12345 Date: Tue, 17 Sep 2024 13:38:48 -0400 Subject: [PATCH] change sorting --- entrypoint.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 238ecf0..991d8ae 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -17,11 +17,12 @@ python --version # Allow poetry to create a virtual environment in the project directory export POETRY_VIRTUALENVS_IN_PROJECT=true -# Activate the virtual environment -source $(poetry env info --path)/bin/activate # Create/update the virtual environment and install dependencies poetry install --no-interaction --no-ansi +# Activate the virtual environment +source $(poetry env info --path)/bin/activate + # Run the command passed to docker run exec "$@" \ No newline at end of file