mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
11 lines
239 B
Text
11 lines
239 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 -- [ ]
|