Skip to content

Commit b967cdd

Browse files
authored
Merge pull request #60 from hashtopolis/bug/dev_container_hashcat7
Fixing devcontainer for hashcat 7
2 parents fab55c6 + 1ea546f commit b967cdd

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.devcontainer/Dockerfile

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,10 @@ RUN apt-get update \
1919
# Install Intel OpenCL Runtime
2020
RUN 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
3428
RUN apt-get autoremove -y \

0 commit comments

Comments
 (0)