Skip to content

Commit

Permalink
feat: enhance Docker base image installation scripts
Browse files Browse the repository at this point in the history
- Added 'zip' and 'unzip' utilities to the dependency installation script for improved file handling capabilities.
- Updated usage instructions in the Python installation script to include a new 'setup' command for configuring pyenv, enhancing user experience and script functionality.
  • Loading branch information
tikazyq committed Dec 31, 2024
1 parent 25fe273 commit 8916194
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions docker/base-image/install/deps/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ apt-get update
apt-get install -y \
curl \
wget \
zip \
unzip \
git \
iputils-ping \
nginx \
Expand Down
6 changes: 3 additions & 3 deletions docker/base-image/install/python/python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ set -e
print_usage() {
echo "Usage: $0 <command> [version] [requirements]"
echo "Commands:"
echo " install <version> - Install Python version (default: latest)"
echo " setup - Setup pyenv"
echo " install <version> - Install Python version (default: latest)"
echo " uninstall <version> - Uninstall Python version"
echo " switch <version> - Switch to a different Python version"
echo " list - List installed Python versions"
echo " list - List installed Python versions"
}

# Function to install Python dependencies
Expand Down

0 comments on commit 8916194

Please sign in to comment.