diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/arch/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docker/arch/Dockerfile b/docker/arch/Dockerfile new file mode 100644 index 0000000..27f7b99 --- /dev/null +++ b/docker/arch/Dockerfile @@ -0,0 +1,15 @@ +FROM archlinux:base-devel-20210725.0.29770 + +RUN pacman -Syu --noconfirm +RUN pacman -S --noconfirm wget cmake git gnupg llvm-libs llvm openmp clang + +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 -DCMAKE_CXX_COMPILER=clang++ -DUSE_MONOLITH_LIBTOOLING=ON\ + && make + +RUN pacman -Scc |