Added requirements option to the entrypoint script

This commit is contained in:
Paul Kruse 2021-04-14 15:51:57 +02:00 committed by GitHub
parent d22b0c4203
commit ad7cee232c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -41,9 +41,9 @@ fi
cd $WORKDIR
if [ -f requirements.txt ]; then
pip install -r requirements.txt
fi # [ -f requirements.txt ]
if [ -f $5 ]; then
pip install -r $5
fi # [ -f $5 ]