feat: small update and minor fixes.

This commit is contained in:
Alexandre Pujol 2024-03-05 18:29:44 +00:00
parent ff849b9f09
commit 1df176cf7b
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
11 changed files with 18 additions and 22 deletions

View file

@ -77,8 +77,7 @@ build_in_docker_dpkg() {
else
docker pull "$BASEIMAGE/$dist"
docker run -tid --name "$img" --volume "$VOLUME:$BUILDIR" \
--env DEBIAN_FRONTEND=noninteractive --env DISTRIBUTION="$target" \
"$BASEIMAGE/$dist"
--env DISTRIBUTION="$target" "$BASEIMAGE/$dist"
docker exec "$img" sudo apt-get update -q
docker exec "$img" sudo apt-get install -y config-package-dev rsync
[[ "$COMMAND" == debian ]] && aptopt=(-t bookworm-backports)