This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/devlake.git
The following commit(s) were added to refs/heads/main by this push:
new ee919fa66 fix: docker file path in build-grafana-image target (#8979)
ee919fa66 is described below
commit ee919fa6623c00d0191ddc8a35353a8254c42f2b
Author: kirillNevedrov <[email protected]>
AuthorDate: Thu Jul 9 09:22:37 2026 +0200
fix: docker file path in build-grafana-image target (#8979)
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 5e18c2779..8639ce2dc 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ build-config-ui-image:
cd config-ui; docker build -t $(IMAGE_REPO)/devlake-config-ui:$(TAG)
--file ./Dockerfile .
build-grafana-image:
- cd grafana; docker build -t $(IMAGE_REPO)/devlake-dashboard:$(TAG)
--file ./backend/Dockerfile .
+ cd grafana; docker build -t $(IMAGE_REPO)/devlake-dashboard:$(TAG)
--file ./Dockerfile .
build-images: build-server-image build-config-ui-image build-grafana-image