Created
November 1, 2023 15:09
-
-
Save dmachi/12ec738098b3b4cb2ccc279ef4a9713d to your computer and use it in GitHub Desktop.
basic install for bv-brc-cli tools
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bootstrap: docker | |
From: debian:12-slim | |
%post | |
cd /tmp | |
apt-get update | |
apt-get install -y curl gdebi locales | |
export LANGUAGE=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen | |
locale-gen | |
curl -O -L https://github.com/BV-BRC/BV-BRC-CLI/releases/download/1.040/bvbrc-cli-1.041.deb | |
gdebi -n bvbrc-cli-1.040.deb | |
rm /tmp/bvbrc-cli-1.040.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment