Unfortunately, this is for now the only way to see the output of RUN commands when using buildkit. It is equivalent to `DOCKER_BUILDKIT=1 docker build . 2>&1 | cat` Signed-off-by: Tibor Vass <tibor@docker.com>
8 lines
83 B
Go
8 lines
83 B
Go
// +build !seccomp
|
|
|
|
package system
|
|
|
|
func SeccompSupported() bool {
|
|
return false
|
|
}
|