Files
lbc-finder/docker-entrypoint.sh

7 lines
120 B
Bash

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