aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker-images/README.md
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/docker-images/README.md')
-rw-r--r--.github/workflows/docker-images/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/docker-images/README.md b/.github/workflows/docker-images/README.md
new file mode 100644
index 0000000..86cfddc
--- /dev/null
+++ b/.github/workflows/docker-images/README.md
@@ -0,0 +1,21 @@
+<!--
+SPDX-FileCopyrightText: Andrei Gherzan <andrei.gherzan@huawei.com>
+
+SPDX-License-Identifier: MIT
+-->
+
+# Docker images for CI
+
+Each directory contains the files for a docker image.
+
+## Building an image
+
+When building a docker image, the build context is expected to be where this
+`README.md` file resides. This means that building the images will require
+passing the appropriate `-f` argument.
+
+Here is an example for building the `dco-check` image:
+
+```
+docker build . -f dco-check/Dockerfile -t dco-check
+```