From 2cf9d96d63d030bc1d6b742c7a165cd716e2953a Mon Sep 17 00:00:00 2001 From: Andreas Pasch Date: Wed, 10 Apr 2019 12:31:12 +0200 Subject: [PATCH] fix: add some log messages in buildspec --- buildspec.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildspec.yml b/buildspec.yml index 9e52eba21..eacbb9658 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -13,6 +13,8 @@ phases: commands: - echo Building the docker image... - echo Build started on `date` + - echo "REPOSITORY_URI=$REPOSITORY_URI" + - echo "IMAGE_TAG=$IMAGE_TAG" - docker build --cache-from $REPOSITORY_URI:latest -t $REPOSITORY_URI:$IMAGE_TAG . - docker tag $REPOSITORY_URI:$IMAGE_TAG $REPOSITORY_URI:latest post_build: