diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2023-05-05 17:20:10 -0700 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2023-05-05 17:20:10 -0700 |
commit | 8ab16f71fee9505d4159154179082c0aec03ca4c (patch) | |
tree | 75e3963b8dd5f029af3fdadfc8c3fa9685e42658 /pkg | |
parent | 5b98d87e523bd5180f0b3caf655c779ed83f686a (diff) | |
download | unit-8ab16f71fee9505d4159154179082c0aec03ca4c.tar.gz unit-8ab16f71fee9505d4159154179082c0aec03ca4c.tar.bz2 |
Docker: tagged minimal variant as latest.
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/docker/Makefile | 6 |
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"; \ |