aboutsummaryrefslogblamecommitdiffstats
path: root/docker/arch/Dockerfile
blob: 4071aca6f6b818df33efdbf2df78e4da0cfcb0fa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                                           













                                                                                                     
FROM archlinux:base-devel-20240908.0.261281

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