summaryrefslogtreecommitdiffhomepage
path: root/pkg/docker
diff options
context:
space:
mode:
authorKonstantin Pavlov <thresh@nginx.com>2023-05-05 17:20:10 -0700
committerKonstantin Pavlov <thresh@nginx.com>2023-05-05 17:20:10 -0700
commit8ab16f71fee9505d4159154179082c0aec03ca4c (patch)
tree75e3963b8dd5f029af3fdadfc8c3fa9685e42658 /pkg/docker
parent5b98d87e523bd5180f0b3caf655c779ed83f686a (diff)
downloadunit-8ab16f71fee9505d4159154179082c0aec03ca4c.tar.gz
unit-8ab16f71fee9505d4159154179082c0aec03ca4c.tar.bz2
Docker: tagged minimal variant as latest.
Diffstat (limited to 'pkg/docker')
-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"; \