aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker-images/README.md
blob: 86cfddc191806f23769d6fc7818ebb13c574db28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
```