File: Dockerfile-arch

package info (click to toggle)
intel-compute-runtime 20.44.18297-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 34,780 kB
  • sloc: cpp: 379,729; lisp: 4,931; python: 299; sh: 196; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 375 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM docker.io/archlinux/base
LABEL maintainer="jacek.danecki@intel.com"

COPY neo /root/neo
COPY scripts/prepare-arch.sh /root

RUN /root/prepare-arch.sh
RUN cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ \
    -DBUILD_WITH_L0=FALSE \
    -DDO_NOT_RUN_AUB_TESTS=1 ../neo ; \
    ninja -j 1
CMD ["/bin/bash"]