Files
compute-runtime/.github/actions/neo-lint/Dockerfile
Artur Harasimiuk fcb6b0b7b7 add lint workflow
Related-To: NEO-6259
Closes: intel/compute-runtime#459
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
2021-10-25 11:17:47 +02:00

15 lines
339 B
Docker

#
# Copyright (C) 2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
FROM docker.io/ubuntu:20.04
RUN apt-get -y update ; apt-get install -y --no-install-recommends gpg software-properties-common
RUN apt-get -y update ; apt-get install -y --no-install-recommends clang-format-11 git
COPY lint.sh /lint.sh
ENTRYPOINT ["/lint.sh"]