Files
lbc-finder/docker-entrypoint.sh

7 lines
100 B
Bash

#!/bin/sh
if [ -e config/requirements.txt ]
then
uv add -r config/requirements.txt
fi
exec "$@"