From 6f71ea833b68964803bb3ac466920ddc236ae1f4 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Thu, 29 Dec 2022 15:36:07 +0100 Subject: [PATCH] Update python dependencies as suggested by dependabot --- core/admin/run_dev.sh | 26 ++++++++++++++++++++++---- core/base/requirements-build.txt | 6 +++--- core/base/requirements-prod.txt | 12 ++++++++---- 3 files changed, 33 insertions(+), 11 deletions(-) diff --git a/core/admin/run_dev.sh b/core/admin/run_dev.sh index 947ad873..0f7c6e05 100755 --- a/core/admin/run_dev.sh +++ b/core/admin/run_dev.sh @@ -11,6 +11,7 @@ DEV_LISTEN="${DEV_LISTEN:-127.0.0.1:8080}" [[ "${DEV_LISTEN}" == *:* ]] || DEV_LISTEN="127.0.0.1:${DEV_LISTEN}" DEV_ADMIN="${DEV_ADMIN:-admin@example.com}" DEV_PASSWORD="${DEV_PASSWORD:-letmein}" +DEV_ARGS=( "$@" ) ### MAIN @@ -90,7 +91,8 @@ EOF # build chmod -R u+rwX,go+rX . -"${docker}" build --tag "${DEV_NAME}:latest" . +echo Running: "${docker/*\/}" build --tag "${DEV_NAME}:latest" "${DEV_ARGS[@]}" . +"${docker}" build --tag "${DEV_NAME}:latest" "${DEV_ARGS[@]}" . # gather volumes to map into container volumes=() @@ -110,6 +112,7 @@ done cat <$(realpath "${base}")/requirements-new.txt + +============================================================================= + The Mailu UI can be found here: http://${DEV_LISTEN}/sso/login EOF [[ -z "${DEV_DB}" ]] && echo "You can log in with user ${DEV_ADMIN} and password ${DEV_PASSWORD}" cat <