summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--pkg/docker/Makefile6
1 files changed, 5 insertions, 1 deletions
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"; \