Merge pull request #33363 from tonistiigi/fix-chunked-build

Fix cancelling builder on chunked requests
This commit is contained in:
Sebastiaan van Stijn 2017-05-31 20:18:35 +02:00 committed by GitHub
commit 7ea0d1ecc6
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ func Detect(config backend.BuildConfig) (remote builder.Source, dockerfile *pars
}
func newArchiveRemote(rc io.ReadCloser, dockerfilePath string) (builder.Source, *parser.Result, error) {
defer rc.Close()
c, err := MakeTarSumContext(rc)
if err != nil {
return nil, nil, err