mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6fa0239772
This makes Windows behavior consistent with Linux -- the entry point must be an executable, not an executable and set of arguments. Signed-off-by: John Starks <jostarks@microsoft.com>
13 lines
354 B
Go
13 lines
354 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/daemon/exec"
|
|
"github.com/docker/docker/libcontainerd"
|
|
)
|
|
|
|
func execSetPlatformOpt(c *container.Container, ec *exec.Config, p *libcontainerd.Process) error {
|
|
// Process arguments need to be escaped before sending to OCI.
|
|
p.Args = escapeArgs(p.Args)
|
|
return nil
|
|
}
|