mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
94d70d8355
Signed-off-by: John Howard <jhoward@microsoft.com> Signed-off-by: John Starks <jostarks@microsoft.com> Signed-off-by: Darren Stahl <darst@microsoft.com> Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
14 lines
490 B
Go
14 lines
490 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.
|
|
// TODO (jstarks): escape the entrypoint too once the tests are fixed to not rely on this behavior
|
|
p.Args = append([]string{p.Args[0]}, escapeArgs(p.Args[1:])...)
|
|
return nil
|
|
}
|