grim/convey

Bump the version for release
v0.14.0-alpha3
2018-02-20, Gary Kramlich
166a6d1979fa
Bump the version for release
# 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"]