mirror of
https://github.com/containers/podman.git
synced 2025-06-23 02:18:13 +08:00

Switch from projectatomic/buildah to containers/buildah Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
16 lines
359 B
Go
16 lines
359 B
Go
// +build !linux
|
|
|
|
package chroot
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// RunUsingChroot is not supported.
|
|
func RunUsingChroot(spec *specs.Spec, bundlePath string, stdin io.Reader, stdout, stderr io.Writer) (err error) {
|
|
return errors.Errorf("--isolation chroot is not supported on this platform")
|
|
}
|