mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
9 lines
188 B
Bash
Executable file
9 lines
188 B
Bash
Executable file
#!/bin/sh
|
|
|
|
apt-get update
|
|
apt-get install -y --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/
|