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

9 lines
188 B
Bash
Executable file

#!/bin/sh
apt-get update
apt-get install -y --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/