mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Merge pull request #12610 from roidelapluie/release245-nolatest
Do not publish latest docker image for LTS
This commit is contained in:
commit
887a77873d
17
Makefile
17
Makefile
|
@ -29,6 +29,23 @@ include Makefile.common
|
|||
|
||||
DOCKER_IMAGE_NAME ?= prometheus
|
||||
|
||||
docker-tag-latest:
|
||||
@echo Skipping latest
|
||||
|
||||
docker-publish:
|
||||
ifneq ($(DOCKER_IMAGE_TAG),latest)
|
||||
$(MAKE) common-docker-publish
|
||||
else
|
||||
@echo Skipping latest
|
||||
endif
|
||||
|
||||
docker-manifest:
|
||||
ifneq ($(DOCKER_IMAGE_TAG),latest)
|
||||
$(MAKE) common-docker-manifest
|
||||
else
|
||||
@echo Skipping latest
|
||||
endif
|
||||
|
||||
.PHONY: update-npm-deps
|
||||
update-npm-deps:
|
||||
@echo ">> updating npm dependencies"
|
||||
|
|
Loading…
Reference in a new issue