mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-10 04:15:40 +01:00
13 lines
225 B
Docker
13 lines
225 B
Docker
|
frOM busybox as base
|
||
|
cOpy lint.Dockerfile .
|
||
|
|
||
|
from scratch
|
||
|
MAINTAINER moby@example.com
|
||
|
COPy --from=base \
|
||
|
/lint.Dockerfile \
|
||
|
/
|
||
|
|
||
|
CMD [ "echo", "Hello, Norway!" ]
|
||
|
CMD [ "echo", "Hello, Sweden!" ]
|
||
|
ENTRYPOINT my-program start
|