Skip to content

Commit ec30607

Browse files
Updated CLANG and LLD version to 7 (#22)
* Updated CLANG and LLD version to 7
1 parent b57fa18 commit ec30607

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docker/ci/Dockerfile-gpu

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ ENV TZ="America/New_York"
99
# Will make python ignore some warnings for docker
1010
ENV PYTHONUNBUFFERED=1
1111
# Clang version
12-
ENV CLANG_VERSION="6.0"
12+
ENV CLANG_VERSION="7"
13+
ENV LLD_VERSION="7"
1314

1415
# OpenMPI
1516
ENV OPENMPI_VERSION="4.1"
@@ -21,10 +22,10 @@ ENV INTEL_DRIVER_URL=https://registrationcenter-download.intel.com/akdlm/irc_nas
2122
ENV 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
2526
RUN apt-get install nano alien bash dpkg git make curl wget cmake autoconf vim automake python3 python3-pip -y
2627
RUN 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
2829
RUN apt-get install libxml2-dev linux-headers-generic libopenmpi-dev libxslt-dev mpi mpich -y
2930
RUN ln -sf python3 /usr/bin/python
3031

0 commit comments

Comments
 (0)