From 8ab16f71fee9505d4159154179082c0aec03ca4c Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Fri, 5 May 2023 17:20:10 -0700 Subject: [PATCH] Docker: tagged minimal variant as latest. --- pkg/docker/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/docker/Makefile b/pkg/docker/Makefile index bf5fe061..cb801253 100644 --- a/pkg/docker/Makefile +++ b/pkg/docker/Makefile @@ -106,7 +106,11 @@ library: if [ "$$previous" == "$$modname" ]; then \ echo "Tags: $(VERSION)-$$mod, $$mod"; \ else \ - echo "Tags: $(VERSION)-$$mod, $${TAGS%, }"; \ + if [ "$$mod" == "minimal" ]; then \ + echo "Tags: $(VERSION)-$$mod, $${TAGS%, }, latest"; \ + else \ + echo "Tags: $(VERSION)-$$mod, $${TAGS%, }"; \ + fi; \ fi; \ echo "Architectures: amd64, arm64v8"; \ echo "GitFetch: refs/heads/branches/packaging"; \