mirror of
https://github.com/moby/moby.git
synced 2026-08-13 17:06:44 +00:00
Update buildkit version to commit which uses 2.0 Signed-off-by: Derek McGowan <derek@mcg.dev>
21 lines
506 B
Go
21 lines
506 B
Go
//go:build !linux
|
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containerd/containerd/v2/core/containers"
|
|
coci "github.com/containerd/containerd/v2/pkg/oci"
|
|
"github.com/docker/docker/container"
|
|
)
|
|
|
|
const supportsSeccomp = false
|
|
|
|
// WithSeccomp sets the seccomp profile
|
|
func WithSeccomp(daemon *Daemon, c *container.Container) coci.SpecOpts {
|
|
return func(ctx context.Context, _ coci.Client, _ *containers.Container, s *coci.Spec) error {
|
|
return nil
|
|
}
|
|
}
|