]> piware.de Git - bin.git/blob - build-debian-toolbox
Generalize build-debian-toolbox
[bin.git] / build-debian-toolbox
1 #!/bin/sh
2 set -eux
3
4 RELEASE=${1:-sid}
5 DISTRO=${2:-debian}
6
7 toolbox rm -f $RELEASE || true
8 toolbox -y create -c $RELEASE --image docker.io/$DISTRO:$RELEASE
9
10 # can't do that with toolbox run yet, as we need to install sudo first
11 podman start $RELEASE
12 podman exec -it $RELEASE sh -exc '
13 # https://bugzilla.redhat.com/show_bug.cgi?id=1785244
14 if [ ! -e /etc/resolv.conf ]; then
15     ln -sfn /run/host/monitor/resolv.conf /etc/resolv.conf
16 fi
17
18 # go-faster apt/dpkg
19 echo force-unsafe-io > /etc/dpkg/dpkg.cfg.d/unsafe-io
20
21 apt-get update
22 apt-get install -y libnss-myhostname sudo eatmydata libcap2-bin
23 '
24
25 toolbox run --container $RELEASE sh -exc '
26 # otherwise installing systemd fails
27 sudo umount /var/log/journal
28
29 sudo eatmydata apt-get -y dist-upgrade
30
31 # development tools
32 sudo eatmydata apt-get install -y --no-install-recommends git-buildpackage libwww-perl less vim lintian debhelper manpages-dev git dput pristine-tar bash-completion python-keyrings.alt wget gnupg ubuntu-dev-tools python3-debian
33 '
34
35 toolbox enter --container $RELEASE