mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 20:38:58 +00:00
11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
source /build/buildconfig
|
|
set -x
|
|
|
|
## Often used tools.
|
|
$minimal_apt_get_install curl less nano vim psmisc
|
|
|
|
## This tool runs a command as another user and sets $HOME.
|
|
cp /build/setuser /sbin/setuser
|