From 011607a55e3907a8016215ed315eab56cfb0877f Mon Sep 17 00:00:00 2001 From: "John (Jack) Brown" Date: Wed, 7 Jun 2017 09:22:27 -0700 Subject: [PATCH] Attempt to fix unrecognized input header error Based on the threads listed below, this should resolve the issue, which is related to building an image with the interactive terminal flag (-t) but then running it without the flag. https://github.com/moby/moby/pull/4882 https://github.com/moby/moby/issues/4857 https://github.com/moby/moby/issues/5327 Change-Type: patch --- automation/jenkins_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/jenkins_build.sh b/automation/jenkins_build.sh index 4053b435f..5b72ed2b9 100755 --- a/automation/jenkins_build.sh +++ b/automation/jenkins_build.sh @@ -218,7 +218,7 @@ deploy_to_s3() { local _s3_cmd="s3cmd --access_key=${_s3_access_key} --secret_key=${_s3_secret_key}" local _s3_sync_opts="--recursive --acl-public" - docker run \ + docker run -it \ -e BASE_DIR=/host/images \ -e S3_CMD="$_s3_cmd" \ -e S3_SYNC_OPTS="$_s3_sync_opts" \