summaryrefslogtreecommitdiff
path: root/pkg/spec
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-06-28 14:30:34 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-06-29 13:18:41 +0000
commit810f2b6061c710a15aaee46c758e71ea9a2920fa (patch)
treeba81ba03ddd25963bb68b0349c25ee066d0a96be /pkg/spec
parentc09bbe8e068cb0648242a9345f2f22a6d1db90e0 (diff)
downloadpodman-810f2b6061c710a15aaee46c758e71ea9a2920fa.tar.gz
podman-810f2b6061c710a15aaee46c758e71ea9a2920fa.tar.bz2
podman-810f2b6061c710a15aaee46c758e71ea9a2920fa.zip
Start using github.com/seccomp/containers-golang
User newer seccomp bindings from the seccomp upstream Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #1021 Approved by: giuseppe
Diffstat (limited to 'pkg/spec')
-rw-r--r--pkg/spec/spec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/spec/spec.go b/pkg/spec/spec.go
index 2cef3ecc0..2faa3c2cd 100644
--- a/pkg/spec/spec.go
+++ b/pkg/spec/spec.go
@@ -5,13 +5,13 @@ import (
"github.com/docker/docker/daemon/caps"
"github.com/docker/docker/pkg/mount"
- "github.com/docker/docker/profiles/seccomp"
"github.com/docker/go-units"
"github.com/opencontainers/runc/libcontainer/devices"
spec "github.com/opencontainers/runtime-spec/specs-go"
"github.com/opencontainers/runtime-tools/generate"
"github.com/pkg/errors"
"github.com/projectatomic/libpod/pkg/rootless"
+ seccomp "github.com/seccomp/containers-golang"
"github.com/sirupsen/logrus"
"io/ioutil"
)