From daef0ef378ae1a01268fef9e7fc938cd3cb4d2fe Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Thu, 23 Dec 2021 09:30:04 +0700 Subject: [PATCH] Removed default image tag for version 14 --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a170336..6741ad5 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,10 @@ -DOCKER_IMAGE=cubetiq/calpine-node -DOCKER_IMAGE_NAME=${DOCKER_IMAGE}:14 - +DOCKER_IMAGE=cubetiq/calpine-node:14 build: @echo 'Starting docker build' docker build . -t ${DOCKER_IMAGE} @echo 'Starting docker push' - docker tag ${DOCKER_IMAGE} ${DOCKER_IMAGE_NAME} + docker tag ${DOCKER_IMAGE} docker push ${DOCKER_IMAGE} - docker push ${DOCKER_IMAGE_NAME} .PHONY:build \ No newline at end of file