Commit 7ade8653 authored by felipe's avatar felipe Committed by GitHub

Merge pull request #8584 from ethereum-optimism/felipe/add-ufm-to-docker-bake

chore(ufm): add to docker bake
parents dc01c039 5550bf98
......@@ -119,6 +119,19 @@ target "op-program" {
tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/op-program:${tag}"]
}
target "op-ufm" {
dockerfile = "Dockerfile"
context = "./op-ufm"
args = {
// op-ufm dockerfile has no _ in the args
GITCOMMIT = "${GIT_COMMIT}"
GITDATE = "${GIT_DATE}"
GITVERSION = "${GIT_VERSION}"
}
platforms = split(",", PLATFORMS)
tags = [for tag in split(",", IMAGE_TAGS) : "${REGISTRY}/${REPOSITORY}/op-ufm:${tag}"]
}
target "proxyd" {
dockerfile = "Dockerfile"
context = "./proxyd"
......
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