Use Bookworm container by default

This commit is contained in:
gardouille 2023-07-26 15:35:50 +02:00
parent 8e8fa3e66d
commit 8fd4dfd833
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ If you have [Docker](https://www.docker.com/) installed locally, just run the fo
user@hostname$ ./build-in-container.sh
```
By default this will build the last version on Debian Bullseye and put the
By default this will build the last version on Debian Bookworm and put the
archive to `target/` directory.
## Build on current host

View File

@ -4,7 +4,7 @@ set -eu
TARGET="$(dirname "$0" | xargs realpath)"
VERSION="3.4.2"
IMAGE="debian:bullseye"
IMAGE="debian:bookworm"
while getopts "v:i:h" opt
do