File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,10 @@ RUN apt-get update \
1919# Install Intel OpenCL Runtime
2020RUN cd /tmp \
2121 && apt install wget lsb-core libnuma-dev pciutils clinfo -y \
22- && wget http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/15532/l_opencl_p_18.1.0.015.tgz \
23- && tar xzvf l_opencl_p_18.1.0.015.tgz \
24- && cd l_opencl_p_18.1.0.015 \
25- && echo "ACCEPT_EULA=accept" > silent.cfg \
26- && echo "PSET_INSTALL_DIR=/opt/intel" >> silent.cfg \
27- && echo "CONTINUE_WITH_OPTIONAL_ERROR=yes" >> silent.cfg \
28- && echo "CONTINUE_WITH_INSTALLDIR_OVERWRITE=yes" >> silent.cfg \
29- && echo "COMPONENTS=DEFAULTS" >> silent.cfg \
30- && echo "PSET_MODE=install" >> silent.cfg \
31- && ./install.sh -s silent.cfg
22+ && wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/oneapi-archive-keyring.gpg >/dev/null \
23+ && echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list \
24+ && apt update \
25+ && apt install intel-oneapi-runtime-libs opencl-headers -y
3226
3327# Clean
3428RUN apt-get autoremove -y \
You can’t perform that action at this time.
0 commit comments