Docker: tagged minimal variant as latest.

This commit is contained in:
Konstantin Pavlov 2023-05-05 17:20:10 -07:00
parent 5b98d87e52
commit 8ab16f71fe

View file

@ -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"; \