Skip to content

Commit

Permalink
Fixes docker-bake build targets for ci-builder and chain-mon
Browse files Browse the repository at this point in the history
  • Loading branch information
zhwrd committed Oct 26, 2023
1 parent d542966 commit 6a7360b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ target "ufm-metamask" {
tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/ufm-metamask:${tag}"]
}

type "chain-mon" {
target "chain-mon" {
dockerfile = "./ops/docker/Dockerfile.packages"
context = "."
args = {
Expand All @@ -173,9 +173,9 @@ type "chain-mon" {
tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/chain-mon:${tag}"]
}

type "ci-builder" {
dockerfile = "Dockerfile"
context = "ops/docker/ci-builder"
target "ci-builder" {
dockerfile = "./ops/docker/ci-builder/Dockerfile"
context = "."
platforms = split(",", PLATFORMS)
tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/ci-builder:${tag}"]
}
Expand Down

0 comments on commit 6a7360b

Please sign in to comment.