blob: edef053440feb3c7273c0b8b3a7c60ba5ed661d2 (
plain) (
tree)
|
|
FROM debian:bullseye-slim
RUN apt update && apt upgrade -y
RUN apt install -y wget cmake git lsb-release software-properties-common gnupg2
RUN wget apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 11
RUN apt install -y llvm-11-dev libclang-common-11-dev libclang-11-dev clang-11
RUN git clone https://github.com/bloodstalker/cgrep \
&& cd cgrep \
&& git submodule init \
&& git submodule update \
&& mkdir build \
&& cd build \
&& cmake ../ -DLLVM_CONF=llvm-config-11 -DCMAKE_CXX_COMPILER=clang++-11 -DUSE_MONOLITH_LIBTOOLING=OFF\
&& make
RUN rm -rf /var/apt/cache
|