Skip to content

Commit

Permalink
Install Git in the base image
Browse files Browse the repository at this point in the history
Git is required by mobu at runtime to check out notebook repositories.
  • Loading branch information
rra committed Dec 15, 2023
1 parent 2421550 commit 73b96c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions scripts/install-base-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ apt-get update
# Install security updates.
apt-get -y upgrade

# Install dependencies required at runtime. git is used to check out notebook
# repositories.
apt-get -y install --no-install-recommends git

# Delete cached files we don't need anymore.
apt-get clean
rm -rf /var/lib/apt/lists/*
1 change: 0 additions & 1 deletion scripts/install-dependency-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ apt-get update
# Install various dependencies that may be required to install mobu:
#
# build-essential: sometimes needed to build Python modules
# git: required by setuptools_scm
# libffi-dev: sometimes needed to build cffi, a cryptography dependency
apt-get -y install --no-install-recommends build-essential git libffi-dev

Expand Down

0 comments on commit 73b96c3

Please sign in to comment.