diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 850a97c8..aec10362 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -6,4 +6,9 @@ then export PULSE_COOKIE=$HOME/pulse.cookie fi -exec "$@" \ No newline at end of file +if [ ${PIP_PACKAGES:+x} ]; then + echo "-- INSTALLING PIP PACKAGES $PIP_PACKAGES --" + python3 -m pip install --no-cache $PIP_PACKAGES +fi + +exec "$@"