From 73de95c8eb55afd59a9e3b7ff3b51faa2963cc6b Mon Sep 17 00:00:00 2001 From: mwtzzz <101583293+mwtzzz@users.noreply.github.com> Date: Tue, 6 Feb 2024 16:32:09 -0800 Subject: [PATCH] do not append UNSTABLE to tag for horizon docker builds (#5196) ### What do not append UNSTABLE to tag for horizon docker builds even if unstable core is used ### Why they've decided they want to be able to bundle unstable captivecore with production horizon, so no point in appending UNSTABLE to the tag ### Testing will be tested ### Issue addressed by this PR https://github.com/stellar/ops/issues/2812 --- services/horizon/docker/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/services/horizon/docker/Makefile b/services/horizon/docker/Makefile index 32074453f0..51ee19f2fe 100644 --- a/services/horizon/docker/Makefile +++ b/services/horizon/docker/Makefile @@ -4,9 +4,6 @@ SUDO := $(shell docker version >/dev/null 2>&1 || echo "sudo") BUILD_DATE := $(shell date -u +%FT%TZ) TAG ?= stellar/stellar-horizon:$(VERSION) -ifeq ($(ALLOW_CORE_UNSTABLE),yes) - TAG := $(TAG)-UNSTABLE -endif docker-build: ifndef VERSION