README.adoc 517 B

123456789101112131415161718192021
  1. == CI Images
  2. These images are used by CI to run the actual builds.
  3. To build the image locally run the following from this directory:
  4. ----
  5. $ docker build --no-cache -f <image-folder>/Dockerfile .
  6. ----
  7. For example
  8. ----
  9. $ docker build --no-cache -f ci-image/Dockerfile .
  10. ----
  11. To test run:
  12. ----
  13. $ docker run -it --entrypoint /bin/bash <SHA> ✈
  14. ----