summaryrefslogtreecommitdiff
path: root/vendor/github.com/projectatomic/buildah/config_noseccomp.go
blob: e8354cc55ecbf0841bf58761d3f912492c1b361d (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build !seccomp

package buildah

import "github.com/opencontainers/runtime-spec/specs-go"

func setupSeccomp(spec *specs.Spec, seccompProfilePath string) error {
	// If no seccomp is being used, the Seccomp profile in the Linux spec
	// is not set
	return nil
}