mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-17 04:06:56 +00:00
637393827d
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>
14 lines
331 B
Docker
14 lines
331 B
Docker
# SPDX-FileCopyrightText: Andrei Gherzan <andrei.gherzan@huawei.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
FROM christophebedard/dco-check:latest
|
|
|
|
# Run under normal user called 'ci'
|
|
RUN useradd --create-home --uid 1000 --shell /usr/bin/bash ci
|
|
USER ci
|
|
|
|
COPY ./dco-check/entrypoint.sh /
|
|
COPY ./utils.sh /
|
|
ENTRYPOINT ["/entrypoint.sh"]
|