Simple wrapper to use for clean apt-get install
Really useful when using docker layers
https://launchpad.net/~apt-get-install/+archive/ubuntu/ppa
sudo add-apt-repository ppa:apt-get-install
sudo apt-get update
sudo apt-get install apt-get-install
ADD https://raw.githubusercontent.com/guilhem/apt-get-install/master/apt-get-install /usr/bin/
RUN chmod +x /usr/bin/apt-get-install
Before (dirty)
RUN apt-get install -y my_package
Before (clean)
RUN apt-get update && apt-get install -y my_package && apt-get autoremove && apt-get clean
After
RUN apt-get-install my_package
Content type
Image
Digest
sha256:3b5a7b67e…
Size
41 MB
Last updated
over 8 years ago
docker pull guilhem/apt-get-install