Develop: Upgrade base image from 220302 to 220311-bullseye #2076

Dockerfiles were also updated for improved readability.
This commit is contained in:
Michael Mayer
2022-03-11 09:40:04 +01:00
parent c91fa51be7
commit d9d0af4bb8
11 changed files with 30 additions and 19 deletions

View File

@@ -19,7 +19,6 @@ if [[ $1 ]] && [[ -z $2 || $2 == "preview" ]]; then
echo "Build Tags: preview"
docker build \
--pull \
--no-cache \
--build-arg BUILD_TAG=$BUILD_DATE \
-t photoprism/$1:preview \
@@ -32,7 +31,6 @@ elif [[ $2 =~ $NUMERIC ]]; then
fi
docker build $4\
--pull \
--no-cache \
--build-arg BUILD_TAG=$2 \
-t photoprism/$1:latest \
@@ -46,7 +44,6 @@ elif [[ $2 == *"preview"* ]]; then
fi
docker build $4\
--pull \
--no-cache \
--build-arg BUILD_TAG=$BUILD_DATE \
-t photoprism/$1:$2 \
@@ -59,7 +56,6 @@ else
fi
docker build $4\
--pull \
--no-cache \
--build-arg BUILD_TAG=$BUILD_DATE-$2 \
-t photoprism/$1:$2 \