buildme.yml 351 B

12345678910111213141516171819
  1. project: buildme
  2. default: build
  3. images:
  4. builder:
  5. dockerfile: docker/Dockerfile.build
  6. tasks:
  7. build:
  8. use: builder
  9. command:
  10. - RUN make dist
  11. - RUN sh -c "echo test > t.txt"
  12. - COPY /buildme/t.txt .
  13. - COPY /buildme/dist.tar.gz .
  14. #- /buildme/dist.tar.gz ./dist.tar.gz
  15. copy: /dist.tar.gz ./test.tar.gz