mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a8e871b0bb
This adds support for Dockerfile commands to have options - e.g: COPY --user=john foo /tmp/ COPY --ignore-mtime foo /tmp/ Supports both booleans and strings. Signed-off-by: Doug Davis <dug@us.ibm.com>
10 lines
289 B
Text
10 lines
289 B
Text
(from "scratch")
|
|
(copy "foo" "/tmp/")
|
|
(copy ["--user=me"] "foo" "/tmp/")
|
|
(copy ["--doit=true"] "foo" "/tmp/")
|
|
(copy ["--user=me" "--doit=true"] "foo" "/tmp/")
|
|
(copy ["--doit=true"] "foo" "/tmp/")
|
|
(copy "foo" "/tmp/")
|
|
(cmd ["--doit"] "a" "b")
|
|
(cmd ["--doit=true"] "a" "b")
|
|
(cmd ["--doit"])
|