File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ ENV TZ="America/New_York"
99# Will make python ignore some warnings for docker
1010ENV PYTHONUNBUFFERED=1
1111# Clang version
12- ENV CLANG_VERSION="6.0"
12+ ENV CLANG_VERSION="7"
13+ ENV LLD_VERSION="7"
1314
1415# OpenMPI
1516ENV OPENMPI_VERSION="4.1"
@@ -21,10 +22,10 @@ ENV INTEL_DRIVER_URL=https://registrationcenter-download.intel.com/akdlm/irc_nas
2122ENV INTEL_SDK_URL=https://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/17206/intel_sdk_for_opencl_applications_2020.3.494.tar.gz
2223
2324# Install os dependencies and pip3
24- RUN apt-get update -y
25+ RUN apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/* && update-ca-certificates && apt-get update -y
2526RUN apt-get install nano alien bash dpkg git make curl wget cmake autoconf vim automake python3 python3-pip -y
2627RUN apt-get install nvidia-driver-460 cuda-drivers-460 intel-opencl-icd nvidia-cuda-toolkit opencl-headers clinfo -y
27- RUN apt-get install doxygen binutils clang-format clang-${CLANG_VERSION} clang++-${CLANG_VERSION} gcc lld-${CLANG_VERSION } lld -y
28+ RUN apt-get install doxygen binutils clang-format clang-${CLANG_VERSION} clang++-${CLANG_VERSION} gcc lld-${LLD_VERSION } lld -y
2829RUN apt-get install libxml2-dev linux-headers-generic libopenmpi-dev libxslt-dev mpi mpich -y
2930RUN ln -sf python3 /usr/bin/python
3031
You can’t perform that action at this time.
0 commit comments