aboutsummaryrefslogtreecommitdiffstats
path: root/llvm.dockerfile
blob: a770b18d655e08d0fe54c3539b621936a52bb4a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu:18.04
RUN apt update && apt upgrade

RUN wget https://apt.llvm.org/llvm.sh \
      && chmod +x ./llvm.sh \
      && ./llvm.sh 11

RUN git clone https://github.com/bloodstalker/cgrep \
      && cd cgrep \
      && git submodule init \
      && git submodule update \
      && make CXX=clang-11 LLVM_CONF=llvm-config-11