Browse Source

Fix missing import

This import got lost after commit 56cc56b0fa806bf8fc3a288a533314331d44cdfa
was merged, likely because the PR was built against an outdated
master.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 6 years ago
parent
commit
d69968d6d3
1 changed files with 1 additions and 0 deletions
  1. 1 0
      container/container_unix.go

+ 1 - 0
container/container_unix.go

@@ -18,6 +18,7 @@ import (
 	"github.com/docker/docker/volume"
 	volumemounts "github.com/docker/docker/volume/mounts"
 	"github.com/opencontainers/selinux/go-selinux/label"
+	"github.com/pkg/errors"
 	"github.com/sirupsen/logrus"
 	"golang.org/x/sys/unix"
 )