mirror of
https://github.com/containers/podman.git
synced 2025-06-27 05:26:50 +08:00

Switch from projectatomic/buildah to containers/buildah Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
16 lines
308 B
Go
16 lines
308 B
Go
// +build !seccomp !linux
|
|
|
|
package buildah
|
|
|
|
import (
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
func setupSeccomp(spec *specs.Spec, seccompProfilePath string) error {
|
|
if spec.Linux != nil {
|
|
// runtime-tools may have supplied us with a default filter
|
|
spec.Linux.Seccomp = nil
|
|
}
|
|
return nil
|
|
}
|