mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-6259 Closes: intel/compute-runtime#459 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
15 lines
339 B
Docker
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"]
|