refactor(docker): requirements.txt to config/requirements.txt to prevent from creating another volume

This commit is contained in:
etienne-hd
2026-03-07 16:48:12 +01:00
parent e60ad25035
commit b2d5d400da

View File

@@ -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 "$@"