12345678910111213141516171819 |
- project: buildme
- default: build
- images:
- builder:
- dockerfile: docker/Dockerfile.build
- tasks:
- build:
- use: builder
- command:
- - RUN make dist
- - RUN sh -c "echo test > t.txt"
- - COPY /buildme/t.txt .
- - COPY /buildme/dist.tar.gz .
- #- /buildme/dist.tar.gz ./dist.tar.gz
- copy: /dist.tar.gz ./test.tar.gz
|