This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-rover.git
The following commit(s) were added to refs/heads/main by this push:
new 4d797c1 chore: add the latest image tag into the build command (#102)
4d797c1 is described below
commit 4d797c1a51394c18d63a952f82cbbf6cb21c4ffb
Author: Rick <[email protected]>
AuthorDate: Sat Oct 21 11:02:19 2023 +0800
chore: add the latest image tag into the build command (#102)
See also the discussions
https://github.com/apache/skywalking/discussions/11438
---
CHANGES.md | 1 +
scripts/build/docker.mk | 1 +
2 files changed, 2 insertions(+)
diff --git a/CHANGES.md b/CHANGES.md
index e392441..9ea818f 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -8,6 +8,7 @@ Release Notes.
* Enhance compatibility when profiling with SSL.
* Update `LabelValue` obtain pod information function to add default value
parameter.
* Add `HasOwnerName` to judgement pod has owner name.
+* Publish the `latest` Docker image tag.
* Improve the stability of Off CPU Profiling.
#### Bug Fixes
diff --git a/scripts/build/docker.mk b/scripts/build/docker.mk
index be4fb18..6e6940c 100644
--- a/scripts/build/docker.mk
+++ b/scripts/build/docker.mk
@@ -32,6 +32,7 @@ define DOCKER_RULE
docker buildx build ${PLATFORMS} ${LOAD_OR_PUSH} \
--build-arg VERSION=$(VERSION) \
--build-arg
BASE_IMAGE=${BASE_IMAGE_NAME}:${CONTAINER_COMMAND_TAG} \
+ -t $(HUB)/skywalking-rover:latest \
-t $(HUB)/skywalking-rover:$(VERSION) --no-cache . -f
docker/Dockerfile.build
@$(MAKE) build-base-container-with-multi-args-cleanup
endef