diff --git a/docker/base-image/install/deps/deps.sh b/docker/base-image/install/deps/deps.sh index 2908aa9e..1143781d 100644 --- a/docker/base-image/install/deps/deps.sh +++ b/docker/base-image/install/deps/deps.sh @@ -13,6 +13,8 @@ apt-get update apt-get install -y \ curl \ wget \ + zip \ + unzip \ git \ iputils-ping \ nginx \ diff --git a/docker/base-image/install/python/python.sh b/docker/base-image/install/python/python.sh index cfc0ad9a..06aa5f90 100644 --- a/docker/base-image/install/python/python.sh +++ b/docker/base-image/install/python/python.sh @@ -7,10 +7,10 @@ set -e print_usage() { echo "Usage: $0 [version] [requirements]" echo "Commands:" - echo " install - Install Python version (default: latest)" + echo " setup - Setup pyenv" + echo " install - Install Python version (default: latest)" echo " uninstall - Uninstall Python version" - echo " switch - Switch to a different Python version" - echo " list - List installed Python versions" + echo " list - List installed Python versions" } # Function to install Python dependencies