mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-08-18 22:11:18 +00:00
It includes jobs for checking DCO and reuse. The latter is set to allow fails as the repository is not yet reuse compliant. When that is done, we can switch it. Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com>
22 lines
516 B
Markdown
22 lines
516 B
Markdown
<!--
|
|
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
|
|
```
|