Files
hercules-hyperion/scripts/ci/bootstrap-apt.sh
Yvan Janssens 442e0d4abb
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Adjust apt bootstrap order for proxy
2026-05-04 14:58:36 +02:00

35 lines
574 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
export DEBIAN_FRONTEND=noninteractive
apt-get update
printf 'Acquire::http::Proxy "http://10.64.44.6:3142";\n' >/etc/apt/apt.conf.d/80proxy
apt-get upgrade -y
apt-get install -y --no-install-recommends build-essential
apt-get install -y --no-install-recommends \
autoconf \
automake \
ca-certificates \
cmake \
curl \
dpkg-sig \
flex \
gawk \
git \
gnupg \
libbz2-dev \
libcap2-bin \
libltdl-dev \
libtool-bin \
m4 \
ncat \
reprepro \
sudo \
time \
wget \
zlib1g-dev
update-ca-certificates