mirror of
https://github.com/containers/podman.git
synced 2025-09-13 02:24:31 +08:00

Vendor in buildah and use as much of commit and bug as possible for podman build and commit. Resolves #586 Signed-off-by: baude <bbaude@redhat.com> Closes: #681 Approved by: mheon
14 lines
283 B
Go
14 lines
283 B
Go
package imagebuilder
|
|
|
|
const (
|
|
// in docker/system
|
|
NoBaseImageSpecifier = "scratch"
|
|
|
|
// not yet part of our import
|
|
commandArg = "arg"
|
|
commandStopSignal = "stopsignal"
|
|
|
|
// in docker/system
|
|
defaultPathEnv = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
)
|