Skip to content

Commit

Permalink
feat: update Python installation script with package list refresh
Browse files Browse the repository at this point in the history
- Added 'apt-get update -y' before package installation to ensure latest package information
- Ensures dependencies are installed from the most recent package lists
  • Loading branch information
Marvin Zhang committed Feb 7, 2025
1 parent c937e0f commit 06eb540
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/base-image/install/python/python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ print_usage() {

# Function to install Python dependencies
install_dependencies() {
# Update package lists
apt-get update -y

apt install -y \
make \
build-essential \
Expand Down

0 comments on commit 06eb540

Please sign in to comment.