From 650c4576cd15f2d6996e1f8ff4e3f64efeaed8bd Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Wed, 24 Jul 2019 13:42:26 -0400 Subject: [PATCH] Removed interactive from command and dist debug target --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f442192..c28c954 100644 --- a/Makefile +++ b/Makefile @@ -20,16 +20,13 @@ AWS_ENV=-e "AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}" -e "AWS_SECRET_ACCESS_KEY=${ S3_CMD=s3 sync --acl "public-read" --sse "AES256" public/ s3://${WEBSITE} DOCKER_PORT=-p 1313:1313/tcp -DOCKER_RUN=docker run -it --rm ${RUN_USER} ${RUN_VOL} +DOCKER_RUN=docker run --rm ${RUN_USER} ${RUN_VOL} # Look up CloudFront distribution ID based on website alias DISTRIBUTION_ID=$(shell docker run --rm ${AWS_ENV} ${AWS_IMAGE} cloudfront list-distributions \ --query 'DistributionList.Items[].{id:Id,a:Aliases.Items}[?contains(a,`${WEBSITE}`)].id' \ --output text) -dist: - @echo ${DISTRIBUTION_ID} - static: s3fs -o use_path_request_style bdebyl.static ${STATIC_DIR}