File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
7
7
8
8
ARG compute_runtime_tag=latest
9
9
ARG igc_tag=latest
10
+ ARG cm_tag=latest
10
11
ARG tbb_tag=latest
11
12
ARG fpgaemu_tag=latest
12
13
ARG cpu_tag=latest
@@ -15,14 +16,17 @@ RUN apt update && apt install -yqq wget
15
16
16
17
COPY scripts/get_release.py /
17
18
18
- # Install IGC and NEO
19
+ # Install IGC, CM and NEO
19
20
RUN python3 /get_release.py intel/intel-graphics-compiler $igc_tag \
20
21
| grep ".*deb" \
21
22
| wget -qi - && \
22
23
python3 /get_release.py intel/compute-runtime $compute_runtime_tag \
23
24
| grep -E ".*((deb)|(sum))" \
24
25
| wget -qi - && \
25
26
sha256sum -c *.sum &&\
27
+ python3 /get_release.py intel/cm-compiler $cm_tag \
28
+ | grep ".*deb" \
29
+ | wget -qi - && \
26
30
dpkg -i *.deb && rm *.deb *.sum
27
31
28
32
RUN mkdir /runtimes
You can’t perform that action at this time.
0 commit comments