deployment/docker/Makefile: do not overwrite latest tag when pushing Docker images for LTS release

The `latest` tag is reserved for the latest release
This commit is contained in:
Aliaksandr Valialkin 2023-08-12 14:37:57 -07:00
parent d2c1515e86
commit 7e9112da50
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

View file

@ -78,7 +78,6 @@ publish-via-docker: \
--build-arg root_image=$(ROOT_IMAGE) \
--build-arg APP_NAME=$(APP_NAME) \
--tag $(DOCKER_NAMESPACE)/$(APP_NAME):$(PKG_TAG)$(RACE) \
--tag $(DOCKER_NAMESPACE)/$(APP_NAME):$(LATEST_TAG)$(RACE) \
-o type=image \
-f app/$(APP_NAME)/multiarch/Dockerfile \
--push \