Make Debian 12 "bookworm" the base image

Just replace "bullseye" with "bookworm" and reintroduce Debian 11
"bullseye" later.
This commit is contained in:
Michal Nowak
2023-07-24 16:19:33 +02:00
parent a5884c2c1d
commit 2d18c57c54
4 changed files with 48 additions and 48 deletions

View File

@@ -34,7 +34,7 @@ if [ -z "${GITLAB_USER}" ] || [ -z "${GITLAB_TOKEN}" ]; then
fi
# Create the container to work in.
CONTAINER_ID=$(docker create --interactive debian:bullseye)
CONTAINER_ID=$(docker create --interactive debian:bookworm)
trap "docker container rm -f \${CONTAINER_ID} >/dev/null" EXIT
docker start "${CONTAINER_ID}"