chore(docker): migrate container build to uv and remove legacy requirements file

This commit is contained in:
etienne-hd
2026-04-29 18:42:26 +02:00
parent be6337684c
commit ccc0448241
3 changed files with 5 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/sh
if [ -e config/requirements.txt ]
then
pip install --no-cache-dir -r config/requirements.txt
uv add -r config/requirements.txt
fi
exec "$@"