mirror of https://github.com/krallin/tini.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
428 B
14 lines
428 B
#!/bin/bash |
|
set -o errexit |
|
set -o nounset |
|
|
|
apt-get update |
|
|
|
apt-get install --no-install-recommends --yes \ |
|
build-essential git gdb valgrind cmake rpm \ |
|
python-dev libcap-dev python-pip python-virtualenv \ |
|
hardening-includes gnupg vim-common \ |
|
gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu libc6-dev-arm64-cross \ |
|
gcc-arm-linux-gnueabihf binutils-arm-linux-gnueabi libc6-dev-armhf-cross |
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|