2018-11-13 12:11:59 +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
|
|
|
|
|
|
|
|
----
|
2020-12-11 06:13:05 +08:00
|
|
|
$ docker build --no-cache -f ci-image/Dockerfile .
|
2018-11-13 12:11:59 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
To test run:
|
|
|
|
|
|
|
|
----
|
2021-03-26 23:26:31 +08:00
|
|
|
$ docker run -it --entrypoint /bin/bash <SHA>
|
2018-11-13 12:11:59 +08:00
|
|
|
----
|