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:22 UTC

[skywalking-python] branch kezhenxu94-patch-1 created (now e9e5edf)

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

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


      at e9e5edf  Fix Docker build missing required ARG

This branch includes the following new commits:

     new e9e5edf  Fix Docker build missing required ARG

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by ke...@apache.org.
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