diff --git a/docker-bake.hcl b/docker-bake.hcl index 36ad3ba2e8..998bb8ac64 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -9,6 +9,7 @@ variable "LOGIN_PNPM_TAG" { } target "login-pnpm" { + context = "." dockerfile = "dockerfiles/login-pnpm.Dockerfile" tags = ["${LOGIN_PNPM_TAG}"] } @@ -18,6 +19,7 @@ variable "LOGIN_DEV_BASE_TAG" { } target "login-dev-base" { + context = "." dockerfile = "dockerfiles/login-dev-base.Dockerfile" contexts = { login-pnpm = "target:login-pnpm" @@ -30,6 +32,7 @@ variable "LOGIN_LINT_TAG" { } target "login-lint" { + context = "." dockerfile = "dockerfiles/login-lint.Dockerfile" contexts = { login-dev-base = "target:login-dev-base"