servo/docker/apt-install.sh
2018-09-10 17:04:32 +02:00

9 lines
192 B
Bash
Executable file

#!/bin/sh
apt-get update -q
apt-get install -qy --no-install-recommends "$@"
# Purge apt-get caches to minimize image size
apt-get auto-remove -y
apt-get clean -y
rm -rf /var/lib/apt/lists/