mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00

Integrates vtproto into buildx. The generated files dockerfile has been modified to copy the buildkit equivalent file to ensure files are laid out in the appropriate way for imports. An import has also been included to change the grpc codec to the version in buildkit that supports vtproto. This will allow buildx to utilize the speed and memory improvements from that. Also updates the gc control options for prune. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
20 lines
303 B
Protocol Buffer
20 lines
303 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package stack;
|
|
|
|
option go_package = "github.com/moby/buildkit/util/stack";
|
|
|
|
message Stack {
|
|
repeated Frame frames = 1;
|
|
repeated string cmdline = 2;
|
|
int32 pid = 3;
|
|
string version = 4;
|
|
string revision = 5;
|
|
}
|
|
|
|
message Frame {
|
|
string Name = 1;
|
|
string File = 2;
|
|
int32 Line = 3;
|
|
}
|