Files
docker-deployment/build/config

19 lines
375 B
Plaintext

export LC_ALL=C
export DEBIAN_FRONTEND=noninteractive
apt_get_install='apt-get install -y --no-install-recommends'
apt_get_install_permanent() {
echo $@ >> /build/permanent
$apt_get_install "$@"
}
apt_get_install_temporary() {
echo $@ >> /build/temporary
$apt_get_install "$@"
}
export_env() {
export $1="$2"
echo -n $2 > /etc/container_environment/$1
}