You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the attestation content exceeds the specified size (4194304 bytes = 4 MB), then the GRPC layer rejects the malformed packet during file transfer with fsutil.
To prevent this, we need to patch fsutil, e.g. with tonistiigi/fsutil#144. The StaticFS implementation in buildkit returns bytes.Reader objects, which implement the io.WriterTo interface, which circumvents the packet size limits in fsutil.
The text was updated successfully, but these errors were encountered:
If the attestation content exceeds the specified size (4194304 bytes = 4 MB), then the GRPC layer rejects the malformed packet during file transfer with fsutil.
To prevent this, we need to patch fsutil, e.g. with tonistiigi/fsutil#144. The
StaticFS
implementation in buildkit returnsbytes.Reader
objects, which implement theio.WriterTo
interface, which circumvents the packet size limits in fsutil.The text was updated successfully, but these errors were encountered: