blob: 89901ae6ed360ad5f48d0ee8565c2e05f71717bf [file] [log] [blame]
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001# 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"]