chris
eb5a8dd62e
Some checks failed
dockers/debian/pipeline/head There was a failure building this commit
8 lines
133 B
Bash
Executable file
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
|