You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2023/02/23 03:45:23 UTC

[skywalking-python] 01/01: Fix Docker build missing required ARG

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch kezhenxu94-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git

commit e9e5edfe59c8179e5397bf0b106ace0867df62b2
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Thu Feb 23 11:45:17 2023 +0800

    Fix Docker build missing required ARG
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 349bd0f..bbf4ce1 100644
--- a/Makefile
+++ b/Makefile
@@ -112,11 +112,11 @@ upload: package
 
 .PHONY: build-image
 build-image:
-	$(MAKE) -C docker build
+	$(MAKE) -C docker build AGENT_VERSION=$(VERSION)
 
 .PHONY: push-image
 push-image:
-	$(MAKE) -C docker push
+	$(MAKE) -C docker push AGENT_VERSION=$(VERSION)
 
 .PHONY: clean
 # FIXME change to python based so we can run on windows