github.com/dnephin/dobi@v0.15.0/examples/inline-dockerfile/dobi.yaml (about) 1 2 meta: 3 project: inline-dockerfile 4 5 6 image=dev: 7 image: example/inline 8 context: . 9 steps: | 10 FROM alpine:3.6 11 RUN apk add -U tree 12 WORKDIR /work 13 RUN mkdir a b && touch a/a b/b c d 14 CMD tree 15 16 job=tree: 17 use: dev