Files
compute-runtime/scripts/docker/Dockerfile-fedora-28-copr-gcc-8
Jacek Danecki ff9b36bca3 ci: switch from staging to experimental copr repositories
Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>

https://github.com/intel/compute-runtime/pull/63

Change-Id: Ic4e6cca2e4d040129e2220c6a85d3fd3e742299e
2018-07-24 15:40:54 +02:00

15 lines
522 B
Plaintext

FROM fedora:28
MAINTAINER Jacek Danecki <jacek.danecki@intel.com>
COPY neo /root/neo
RUN dnf install -y gcc-c++ cmake ninja-build git pkg-config; \
dnf install -y 'dnf-command(copr)'; \
dnf copr enable -y arturh/intel-opencl; \
dnf copr enable -y arturh/intel-opencl-experimental; \
dnf install -y intel-igc-opencl-devel; \
cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib; \
mkdir /root/build; cd /root/build ; cmake -G Ninja ../neo; \
ninja -j `nproc`
CMD ["/bin/bash"]