Commit 82f25574 authored by protolambda's avatar protolambda Committed by GitHub

Merge pull request #7841 from ethereum-optimism/fix-bake

ops: fix docker-bake indexer and ci-builder target and update codeowners
parents fbaefbc0 9407d90c
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
/.circleci @ethereum-optimism/infra-reviewers /.circleci @ethereum-optimism/infra-reviewers
/.github @ethereum-optimism/infra-reviewers /.github @ethereum-optimism/infra-reviewers
/ops @ethereum-optimism/infra-reviewers /ops @ethereum-optimism/infra-reviewers
/docker-bake.hcl @ethereum-optimism/infra-reviewers
# Misc # Misc
/proxyd @ethereum-optimism/infra-reviewers /proxyd @ethereum-optimism/infra-reviewers
......
...@@ -142,7 +142,7 @@ target "indexer" { ...@@ -142,7 +142,7 @@ target "indexer" {
GITVERSION = "${GIT_VERSION}" GITVERSION = "${GIT_VERSION}"
} }
platforms = split(",", PLATFORMS) platforms = split(",", PLATFORMS)
tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/proxyd:${tag}"] tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/indexer:${tag}"]
} }
target "ufm-metamask" { target "ufm-metamask" {
...@@ -177,7 +177,7 @@ type "ci-builder" { ...@@ -177,7 +177,7 @@ type "ci-builder" {
dockerfile = "Dockerfile" dockerfile = "Dockerfile"
context = "ops/docker/ci-builder" context = "ops/docker/ci-builder"
platforms = split(",", PLATFORMS) platforms = split(",", PLATFORMS)
tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/chain-mon:${tag}"] tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/ci-builder:${tag}"]
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment