From b2d5d400da607154b3c41575cfb551a659ac837b Mon Sep 17 00:00:00 2001 From: etienne-hd Date: Sat, 7 Mar 2026 16:48:12 +0100 Subject: [PATCH] refactor(docker): requirements.txt to config/requirements.txt to prevent from creating another volume --- docker-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index f3ffa37..24dff09 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -1,7 +1,7 @@ #!/bin/sh -if [ -e requirements.txt ] +if [ -e config/requirements.txt ] then - pip install --no-cache-dir -r requirements.txt + pip install --no-cache-dir -r config/requirements.txt fi exec "$@" \ No newline at end of file