mirror of
https://github.com/rkt/rkt.git
synced 2025-08-26 06:11:28 +08:00
10 lines
351 B
Bash
Executable File
10 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DEBIAN_SID_DEPS="ca-certificates gcc libc6-dev gpg make automake wget git golang-go coreutils cpio squashfs-tools realpath autoconf file xz-utils patch bc locales libacl1-dev libssl-dev libtspi-dev libsystemd-dev"
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends ${DEBIAN_SID_DEPS}
|