diff --git a/build/config b/build/config index 0085fd0..97e78f5 100644 --- a/build/config +++ b/build/config @@ -1,3 +1,15 @@ export LC_ALL=C export DEBIAN_FRONTEND=noninteractive -minimal_apt_get_install='apt-get install -y --no-install-recommends' + +apt_get_install='apt-get install -y --no-install-recommends' +minimal_apt_get_install=$apt_get_install + +apt_get_install_permanent() { + echo $@ >> /build/permanent + $apt_get_install "$@" +} + +apt_get_install_temporary() { + echo $@ >> /build/temporary + $apt_get_install "$@" +} \ No newline at end of file