Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacius committed Aug 27, 2024
1 parent c840a24 commit e2d3f61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ variable "ALFRESCO_REPO_USER_NAME" {
}

variable "TARGET_ARCH" {
default = "" # e.g. ["linux/amd64"]
default = [] # e.g. ["linux/amd64"]
}

target "java_base" {
Expand Down Expand Up @@ -139,7 +139,7 @@ target "java_base" {
}
tags = ["${REGISTRY}/${REGISTRY_NAMESPACE}/alfresco-base-java:${JDIST}${JAVA_MAJOR}-${DISTRIB_NAME}${DISTRIB_MAJOR}"]
output = ["type=cacheonly"]
platforms = "${TARGET_ARCH}"
platforms = TARGET_ARCH
}

variable "TOMCAT_MAJOR" {
Expand Down Expand Up @@ -183,7 +183,7 @@ target "tomcat_base" {
}
tags = ["${REGISTRY}/${REGISTRY_NAMESPACE}/alfresco-base-tomcat:tomcat${TOMCAT_MAJOR}-${JDIST}${JAVA_MAJOR}-${DISTRIB_NAME}${DISTRIB_MAJOR}"]
output = ["type=cacheonly"]
platforms = "${TARGET_ARCH}"
platforms = TARGET_ARCH
}

target "repository" {
Expand Down

0 comments on commit e2d3f61

Please sign in to comment.