Skip to content

Commit

Permalink
quiet added
Browse files Browse the repository at this point in the history
  • Loading branch information
3x3cut0r committed Oct 31, 2023
1 parent 370d437 commit 59aaec7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion streamlit/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
set -e

############################
# setup global environment #
Expand All @@ -18,7 +19,7 @@ chmod -R 755 /app
install_complete="/app/requirements.complete"
if [ -s /app/requirements.txt ]; then
if [ ! -f $install_complete ]; then
/venv/bin/pip install --no-cache-dir -r /app/requirements.txt > /dev/null 2>&1
/venv/bin/pip install --no-cache-dir --disable-pip-version-check --quiet -r /app/requirements.txt
touch $install_complete
fi
fi
Expand Down

0 comments on commit 59aaec7

Please sign in to comment.