grim/convey

merging

2018-02-11, Gary Kramlich
35cb993e3262
merging
# define our base
FROM alpine:edge as multi-stage-base
# create our first child
FROM multi-stage-base as multi-stage-left
CMD ["echo", "left"]
# create our second child
FROM multi-stage-base as multi-stage-right
CMD ["echo", "right"]