1
0
mirror of https://github.com/phusion/baseimage-docker.git synced 2026-03-26 20:38:58 +00:00
Files
baseimage-docker/image/bin/install_clean.sh
2017-10-30 10:22:42 -04:00

11 lines
217 B
Bash
Executable File

#!/bin/sh
# Apt installer helper for Docker images
set -e
echo "Installing $*"
apt-get -q update && apt-get -qy install $* \
&& apt-get -qy autoremove \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*