1# SPDX-FileCopyrightText: Andrei Gherzan <andrei.gherzan@huawei.com>
2#
3# SPDX-License-Identifier: MIT
4
5FROM christophebedard/dco-check:latest
6
7# Run under normal user called 'ci'
8RUN useradd --create-home --uid 1000 --shell /usr/bin/bash ci
9USER ci
10
11COPY ./dco-check/entrypoint.sh /
12COPY ./utils.sh /
13ENTRYPOINT ["/entrypoint.sh"]
14