riju/scripts/docker-install-phase2.bash

43 lines
402 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -o pipefail
set -x
packages="
# Needed for project infrastructure
bash
git
make
nodejs
python3-pip
yarn
# Handy utilities
apt-file
bsdmainutils
curl
emacs-nox
git
htop
jq
lsof
make
man-db
moreutils
nano
sudo
tmux
vim
wget
"
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y $(grep -v "^#" <<< "$packages")
rm -rf /var/lib/apt/lists/*
rm "$0"