initializr/ci/images/README.adoc

22 lines
349 B
Plaintext
Raw Normal View History

2020-12-17 18:20:23 +08:00
== CI Images
These images are used by CI to run the actual builds.
To build the image locally run the following from this directory:
----
$ docker build --no-cache -f <image-folder>/Dockerfile .
----
For example
----
$ docker build --no-cache -f ci-image/Dockerfile .
----
To test run:
----
2021-03-18 21:21:41 +08:00
$ docker run -it --entrypoint /bin/bash <SHA>
2020-12-17 18:20:23 +08:00
----