From 765a8052daa9dca7ca4acb4daf14fc6138f7dc14 Mon Sep 17 00:00:00 2001 From: Denozordec Date: Tue, 19 May 2026 14:13:40 +0700 Subject: [PATCH] docker: simplify web image targets in Docker bake configuration - Removed the "web-deps" and "web-build" targets from the web-images group to streamline the build process. - Updated the configuration to focus on the primary targets "evobgp-web" and "evobgp-web-all". --- deploy/docker/docker-bake.hcl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/docker/docker-bake.hcl b/deploy/docker/docker-bake.hcl index 514b66f..9c6f744 100644 --- a/deploy/docker/docker-bake.hcl +++ b/deploy/docker/docker-bake.hcl @@ -67,8 +67,9 @@ group "go-images" { ] } +# web-deps / web-build — только зависимости (contexts), без tags; при --push в группе не указывать. group "web-images" { - targets = ["web-deps", "web-build", "evobgp-web", "evobgp-web-all"] + targets = ["evobgp-web", "evobgp-web-all"] } # --- Go: go mod download → все cmd/* → birdc (один раз) → runtime-образы ---