Used version number and remove explicit dependency

This commit is contained in:
Tobias Genannt 2022-06-15 10:15:15 +02:00
parent 14c30fb81c
commit c3c94b0a63
2 changed files with 2 additions and 3 deletions

View file

@ -49,7 +49,7 @@ if [ "${1}x" == "x" ] || [ "${1}" == "--help" ] || [ "${1}" == "-h" ]; then
echo " DOCKERFILE The name of Dockerfile to use."
echo " Default: Dockerfile"
echo " DOCKER_FROM The base image to use."
echo " Default: 'debian:bullseye-slim'"
echo " Default: 'debian:11-slim'"
echo " DOCKER_TARGET A specific target to build."
echo " It's currently not possible to pass multiple targets."
echo " Default: main"
@ -170,7 +170,7 @@ fi
# Determining the value for DOCKER_FROM
###
if [ -z "$DOCKER_FROM" ]; then
DOCKER_FROM="debian:bullseye-slim"
DOCKER_FROM="debian:11-slim"
fi
###