mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
9 lines
192 B
Bash
Executable file
9 lines
192 B
Bash
Executable file
#!/bin/sh
|
|
|
|
apt-get update -q
|
|
apt-get install -qy --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/
|