diff --git a/docker-bake.hcl b/docker-bake.hcl index 8809f46..bcb74b7 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -1,5 +1,5 @@ group "default" { - targets = ["debian-latest", "alpine-latest", "debian-11", "debian-10", "debian-9.6", "debian-9.5", "debian-9.4", "alpine-11", "alpine-10", "alpine-9.6", "alpine-9.5", "alpine-9.4"] + targets = ["debian-latest", "alpine-latest", "debian-11", "debian-10", "debian-9.6", "debian-9.5", "alpine-11", "alpine-10", "alpine-9.6", "alpine-9.5"] } target "common" { @@ -76,15 +76,3 @@ target "alpine-9.5" { args = {"BASETAG" = "9.5-alpine"} tags = ["prodrigestivill/postgres-backup-local:9.5-alpine"] } - -target "debian-9.4" { - inherits = ["debian"] - args = {"BASETAG" = "9.4"} - tags = ["prodrigestivill/postgres-backup-local:9.4"] -} - -target "alpine-9.4" { - inherits = ["alpine"] - args = {"BASETAG" = "9.4-alpine"} - tags = ["prodrigestivill/postgres-backup-local:9.4-alpine"] -} diff --git a/generate.sh b/generate.sh index 27186d6..6d19ff4 100755 --- a/generate.sh +++ b/generate.sh @@ -3,7 +3,7 @@ set -e DOCKER_BAKE_FILE=${1:-"docker-bake.hcl"} -TAGS=${TAGS:-"12 11 10 9.6 9.5 9.4"} +TAGS=${TAGS:-"12 11 10 9.6 9.5"} GOCRONVER=${GOCRONVER:-"v0.0.9"} PLATFORMS=${PLATFORMS:-"linux/amd64 linux/arm64 linux/arm/v7"} IMAGE_NAME=${IMAGE_NAME:-"prodrigestivill/postgres-backup-local"}