Skip to content

Commit

Permalink
Merge pull request #6 from Boehringer-Ingelheim/lychee
Browse files Browse the repository at this point in the history
add lychee to base image
  • Loading branch information
sorinvoicu authored Apr 5, 2024
2 parents 7af0cce + 3523fa0 commit 4a23a25
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/install_sys_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,19 @@ set -e

# List of system dependencies
pkgs_to_install="\
curl \
lbzip2 \
rsync \
qpdf \
"
apt-get update -y
# shellcheck disable=SC2086
apt-get install -q -y ${pkgs_to_install}

# Clean up
apt-get autoremove -y
apt-get autoclean -y
rm -rf /var/lib/apt/lists/*

# Install lychee URL checker
curl -sL "https://github.com/lycheeverse/lychee/releases/download/v0.14.3/lychee-v0.14.3-x86_64-unknown-linux-gnu.tar.gz" | tar -xvzf - -C "/usr/local/bin"

0 comments on commit 4a23a25

Please sign in to comment.