Running the following command results in an "Unexpected EOF" error halfway through (See full command output)
docker build git://github.com/dotcloud/hipache
Using the -q option solves this. I'm guessing the wget command throws in an EOF signal at some point which is directly copied in the http.ResponseWriter in verbose mode, and that this is what causes the problem.
I'm not sure what the practical solution would be here.
Additional thoughts:
- Problem also happens with docker-py, so it's not client related.
- Building from a local copy of the hipache repo also leads to the same issue, so it's not git related.
Running the following command results in an "Unexpected EOF" error halfway through (See full command output)
Using the
-qoption solves this. I'm guessing the wget command throws in an EOF signal at some point which is directly copied in thehttp.ResponseWriterin verbose mode, and that this is what causes the problem.I'm not sure what the practical solution would be here.
Additional thoughts: