mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-25 20:07:55 +00:00
15 lines
414 B
Bash
Executable File
15 lines
414 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
source /bd_build/buildconfig
|
|
set -x
|
|
|
|
## Often used tools.
|
|
$minimal_apt_get_install curl less vim-tiny psmisc gpg-agent dirmngr
|
|
ln -s /usr/bin/vim.tiny /usr/bin/vim
|
|
|
|
## This tool runs a command as another user and sets $HOME.
|
|
cp /bd_build/bin/setuser /sbin/setuser
|
|
|
|
## This tool allows installation of apt packages with automatic cache cleanup.
|
|
cp /bd_build/bin/install_clean /sbin/install_clean
|