From c27731db8592cb0a3aa76a5cf21d7ddc816fee77 Mon Sep 17 00:00:00 2001 From: Mike Graves Date: Thu, 11 Oct 2018 15:56:17 -0400 Subject: [PATCH] Escape the aws cli docker login The $ has to be escaped in the makefile, otherwise the push will fail with a 403. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2173c3..ef80273 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,6 @@ update: pipenv update --dev publish: - $(aws ecr get-login --no-include-email --region us-east-1) + $$(aws ecr get-login --no-include-email --region us-east-1) docker push $(ECR_REGISTRY)/carbon:latest docker push $(ECR_REGISTRY)/carbon:`git describe --always`