Remove unsupported version 9.6

This commit is contained in:
Pau Rodriguez-Estivill
2022-02-26 11:10:52 +01:00
parent 8112dc75b5
commit af12d1a098
2 changed files with 2 additions and 20 deletions
+1 -19
View File
@@ -1,5 +1,5 @@
group "default" {
targets = ["debian-latest", "alpine-latest", "debian-13", "debian-12", "debian-11", "debian-10", "debian-9.6", "alpine-13", "alpine-12", "alpine-11", "alpine-10", "alpine-9.6"]
targets = ["debian-latest", "alpine-latest", "debian-13", "debian-12", "debian-11", "debian-10", "alpine-13", "alpine-12", "alpine-11", "alpine-10"]
}
variable "BUILDREV" {
@@ -112,21 +112,3 @@ target "alpine-10" {
notequal("", BUILDREV) ? "prodrigestivill/postgres-backup-local:10-alpine-${BUILDREV}" : ""
]
}
target "debian-9.6" {
inherits = ["debian"]
args = {"BASETAG" = "9.6"}
tags = [
"prodrigestivill/postgres-backup-local:9.6",
notequal("", BUILDREV) ? "prodrigestivill/postgres-backup-local:9.6-debian-${BUILDREV}" : ""
]
}
target "alpine-9.6" {
inherits = ["alpine"]
args = {"BASETAG" = "9.6-alpine"}
tags = [
"prodrigestivill/postgres-backup-local:9.6-alpine",
notequal("", BUILDREV) ? "prodrigestivill/postgres-backup-local:9.6-alpine-${BUILDREV}" : ""
]
}