mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
15 lines
312 B
Bash
Executable File
15 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
if [[ ! -f /etc/debian_version ]]; then
|
|
echo "minideb can currently only be built on debian based distros, aborting..."
|
|
exit 1
|
|
fi
|
|
|
|
apt-get update
|
|
apt-get install -y debootstrap debian-archive-keyring jq dpkg-dev gnupg apt-transport-https ca-certificates curl gpg
|
|
|