aboutsummaryrefslogtreecommitdiffstats
path: root/docker/16/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/16/Dockerfile')
-rw-r--r--docker/16/Dockerfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/docker/16/Dockerfile b/docker/16/Dockerfile
index 5406646..1c767ce 100644
--- a/docker/16/Dockerfile
+++ b/docker/16/Dockerfile
@@ -1,10 +1,9 @@
FROM debian:bullseye-slim
-ENV HTTPS_PROXY=socks5h://192.168.1.214:9995
RUN apt update && apt upgrade -y
RUN apt install -y wget cmake git lsb-release software-properties-common gnupg2
RUN wget https://apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 16
-RUN apt install -y llvm-16-dev libclang-common-16-dev libclang-16-dev clang-16
+RUN apt install -y llvm-16-dev libclang-common-16-dev libclang-16-dev clang-16 libclang-cpp16-dev
RUN git clone https://github.com/bloodstalker/cgrep \
&& cd cgrep \
@@ -12,7 +11,7 @@ RUN git clone https://github.com/bloodstalker/cgrep \
&& git submodule update \
&& mkdir build \
&& cd build \
- && cmake ../ -DLLVM_CONF=llvm-config-16 -DCMAKE_CXX_COMPILER=clang++-16 -DUSE_MONOLITH_LIBTOOLING=OFF\
+ && cmake ../ -DLLVM_CONF=llvm-config-16 -DCMAKE_CXX_COMPILER=clang++-16 -DUSE_MONOLITH_LIBTOOLING=ON\
&& make
RUN rm -rf /var/apt/cache