Skip to content

Commit 8ab16f7

Browse files
committed
Docker: tagged minimal variant as latest.
1 parent 5b98d87 commit 8ab16f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pkg/docker/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,11 @@ library:
106106
if [ "$$previous" == "$$modname" ]; then \
107107
echo "Tags: $(VERSION)-$$mod, $$mod"; \
108108
else \
109-
echo "Tags: $(VERSION)-$$mod, $${TAGS%, }"; \
109+
if [ "$$mod" == "minimal" ]; then \
110+
echo "Tags: $(VERSION)-$$mod, $${TAGS%, }, latest"; \
111+
else \
112+
echo "Tags: $(VERSION)-$$mod, $${TAGS%, }"; \
113+
fi; \
110114
fi; \
111115
echo "Architectures: amd64, arm64v8"; \
112116
echo "GitFetch: refs/heads/branches/packaging"; \

0 commit comments

Comments
 (0)