docker: added patch to fix too many arguments in call to filesync.CopyFileWriter

- reverts 1fbc98bc6a (diff-4493cae342788d4a8f2bdbce1a2d69fc)
This commit is contained in:
5schatten 2019-09-04 12:10:01 +02:00
parent 638c6d7d21
commit 91a7f8bd0d

View File

@ -0,0 +1,12 @@
--- a/components/engine/vendor/github.com/moby/buildkit/exporter/tar/export.go
+++ b/components/engine/vendor/github.com/moby/buildkit/exporter/tar/export.go
@@ -147,7 +147,7 @@
fs = d.FS
}
- w, err := filesync.CopyFileWriter(ctx, nil, e.caller)
+ w, err := filesync.CopyFileWriter(ctx, e.caller)
if err != nil {
return nil, err
}