debian/apt-install
chris eb5a8dd62e
Some checks failed
dockers/debian/pipeline/head There was a failure building this commit
Initial publish
2020-05-28 13:02:04 +02:00

8 lines
133 B
Bash
Executable file

#!/bin/sh
apt-get update
apt-get install -y --no-install-recommends $@
rc=$?
apt-get clean all
rm -rf /var/lib/apt/lists/*
exit $rc