From 2280b0fd2bc78666eade6102a3750106c3143eeb Mon Sep 17 00:00:00 2001 From: Satyam Zode <5508956+satyamz@users.noreply.github.com> Date: Tue, 17 Feb 2026 21:31:47 +0530 Subject: [PATCH 1/2] Noop change to trigger pr preview Clarify sudo command comment in Makefile. Updated comment for clarity on sudo usage. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 991d2c79..cb898763 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Check if we need to prepend docker commands with sudo +# Check if we need to prepend docker commands with sudo. SUDO := $(shell docker version >/dev/null 2>&1 || echo "sudo") # If TAG is not provided set default value From 50ca0571993d3742d134b5b91c4643c9028dad3d Mon Sep 17 00:00:00 2001 From: Satyam Zode <5508956+satyamz@users.noreply.github.com> Date: Tue, 17 Feb 2026 21:35:44 +0530 Subject: [PATCH 2/2] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb898763..244905d7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Check if we need to prepend docker commands with sudo. SUDO := $(shell docker version >/dev/null 2>&1 || echo "sudo") -# If TAG is not provided set default value +# If TAG is not provided set default value. TAG ?= stellar/stellar-dashboard:$(shell git rev-parse --short HEAD)$(and $(shell git status -s),-dirty-$(shell id -u -n)) # https://github.com/opencontainers/image-spec/blob/master/annotations.md BUILD_DATE := $(shell date -u +%FT%TZ)