aboutsummaryrefslogtreecommitdiffstats
path: root/docker/arch/Dockerfile
blob: 27f7b994b2a2d9d176fd546dbf58e9dc412743e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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