diff --git a/Makefile b/Makefile index 2786ea9..7ac042a 100644 --- a/Makefile +++ b/Makefile @@ -8,5 +8,11 @@ login: build: docker build . -t $(IMAGE_NAME):$(GIT_TAG) -push: login - docker push $(IMAGE_NAME) +bump-latest: + docker tag ${IMAGE_name}:${GIT_TAG} ${IMAGE_NAME}:latest + +push-current: login + docker push $(IMAGE_NAME):$(GIT_TAG) + +push-latest: login + docker push $(IMAGE_NAME):latest