Skip to content

Commit

Permalink
Add clang-tools Dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-at-work committed Jan 1, 2021
1 parent 62165c1 commit fe35dcf
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions ci/docker/clang-tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ubuntu:groovy
LABEL maintainer="Apache Geode <[email protected]>"
LABEL description="Minimal image for building with clang toolset."

RUN apt-get update \
&& apt-get install -y \
bash \
libssl-dev \
patch \
cmake \
git \
doxygen \
openjdk-8-jdk-headless \
jq \
&& rm -rf /var/lib/apt/lists/*

ARG CLANG_VERSION=11
RUN apt-get update \
&& apt-get install -y \
clang-${CLANG_VERSION} \
lld-${CLANG_VERSION} \
clang-format-${CLANG_VERSION} \
clang-tidy-${CLANG_VERSION} \
&& update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/bin/lld lld /usr/bin/lld-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/bin/run-clang-tidy run-clang-tidy /usr/bin/run-clang-tidy-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-${CLANG_VERSION} 10 \
&& update-alternatives --install /usr/bin/cc cc /usr/bin/clang 10 \
&& update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 10 \
&& update-alternatives --install /usr/bin/ld ld /usr/bin/lld 10 \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit fe35dcf

Please sign in to comment.