grim/convey

Support directories for templating in the kubectl commands as well
# 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"]