summaryrefslogtreecommitdiff
path: root/meta-raspberrypi/.github/workflows/docker-images/dco-check/Dockerfile
blob: 89901ae6ed360ad5f48d0ee8565c2e05f71717bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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"]