Commit 20360744 authored by felipe's avatar felipe Committed by GitHub

Merge pull request #8590 from ethereum-optimism/felipe/fix-docker-bake-context

chore: fix docker bake context for op-ufm and proxyd
parents 734b37ea fa7efb8f
...@@ -120,8 +120,8 @@ target "op-program" { ...@@ -120,8 +120,8 @@ target "op-program" {
} }
target "op-ufm" { target "op-ufm" {
dockerfile = "Dockerfile" dockerfile = "./op-ufm/Dockerfile"
context = "./op-ufm" context = "./"
args = { args = {
// op-ufm dockerfile has no _ in the args // op-ufm dockerfile has no _ in the args
GITCOMMIT = "${GIT_COMMIT}" GITCOMMIT = "${GIT_COMMIT}"
...@@ -133,8 +133,8 @@ target "op-ufm" { ...@@ -133,8 +133,8 @@ target "op-ufm" {
} }
target "proxyd" { target "proxyd" {
dockerfile = "Dockerfile" dockerfile = "./proxyd/Dockerfile"
context = "./proxyd" context = "./"
args = { args = {
// proxyd dockerfile has no _ in the args // proxyd dockerfile has no _ in the args
GITCOMMIT = "${GIT_COMMIT}" GITCOMMIT = "${GIT_COMMIT}"
......
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