Merge pull request #26396 from colhom/fix-federation-build

Fix docker load error in federation image push
This commit is contained in:
Alex Robinson 2016-05-27 11:44:32 -07:00
commit 4db3cc7e5e

View File

@ -156,7 +156,7 @@ function push-federated-images {
echo "Load: ${imageFile}"
# Load the image. Trust we know what it's called, as docker load provides no help there :(
docker load -q < "${imageFile}"
docker load < "${imageFile}"
local srcImageTag="$(cat ${imageFolder}/${binary}.docker_tag)"
local dstImageTag="${FEDERATION_IMAGE_TAG:-$srcImageTag}"