]> piware.de Git - bin.git/blob - build-debian-toolbox
build-devtoolbox: Add packages for scanning
[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, https://github.com/containers/toolbox/pull/380
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 # allow sudo with empty password
25 sed -i "s/nullok_secure/nullok/" /etc/pam.d/common-auth
26 '
27
28 toolbox run --container $RELEASE sh -exc '
29 # otherwise installing systemd fails
30 sudo umount /var/log/journal
31
32 # useful hostname
33 . /etc/os-release
34 echo "${ID}-${VERSION_ID:-sid}" | sudo tee /etc/hostname
35 sudo hostname -F /etc/hostname
36
37 sudo eatmydata apt-get -y dist-upgrade
38
39 # development tools
40 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 wget gnupg ubuntu-dev-tools python3-debian fakeroot libdistro-info-perl
41 '
42
43 toolbox enter --container $RELEASE