Skip to content

Console Output

+ docker build -t 3ab2a4a7d44b9d567024978791551b4277afb1be -f scripts/docker/Dockerfile.sycl scripts/docker
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            Install the buildx component to build images with BuildKit:
            https://docs.docker.com/go/buildx/

Sending build context to Docker daemon  22.02kB

Step 1/16 : ARG BASE=nvidia/cuda:11.7.1-devel-ubuntu22.04
Step 2/16 : FROM $BASE
 ---> 28a6f693c19c
Step 3/16 : RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
 ---> Using cache
 ---> 343be2343ff0
Step 4/16 : RUN apt-get update && apt-get install -y         bc         wget         ccache         ninja-build         python3         git         libomp-dev         &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> fca416d5ff4d
Step 5/16 : RUN KEYDUMP_URL=https://cloud.cees.ornl.gov/download &&     KEYDUMP_FILE=keydump &&     wget --quiet ${KEYDUMP_URL}/${KEYDUMP_FILE} &&     wget --quiet ${KEYDUMP_URL}/${KEYDUMP_FILE}.sig &&     gpg --import ${KEYDUMP_FILE} &&     gpg --verify ${KEYDUMP_FILE}.sig ${KEYDUMP_FILE} &&     rm ${KEYDUMP_FILE}*
 ---> Using cache
 ---> 5627622d2e28
Step 6/16 : ARG CMAKE_VERSION=3.23.2
 ---> Using cache
 ---> 034a039787e8
Step 7/16 : ENV CMAKE_DIR=/opt/cmake
 ---> Using cache
 ---> 8a4c5ad482f4
Step 8/16 : RUN CMAKE_URL=https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION} &&     CMAKE_SCRIPT=cmake-${CMAKE_VERSION}-Linux-x86_64.sh &&     CMAKE_SHA256=cmake-${CMAKE_VERSION}-SHA-256.txt &&     wget --quiet ${CMAKE_URL}/${CMAKE_SHA256} &&     wget --quiet ${CMAKE_URL}/${CMAKE_SHA256}.asc &&     wget --quiet ${CMAKE_URL}/${CMAKE_SCRIPT} &&     gpg --verify ${CMAKE_SHA256}.asc ${CMAKE_SHA256} &&     grep -i ${CMAKE_SCRIPT} ${CMAKE_SHA256} | sed -e s/linux/Linux/ | sha256sum --check &&     mkdir -p ${CMAKE_DIR} &&     sh ${CMAKE_SCRIPT} --skip-license --prefix=${CMAKE_DIR} &&     rm cmake*
 ---> Using cache
 ---> 11a39ad115e4
Step 9/16 : ENV PATH=${CMAKE_DIR}/bin:$PATH
 ---> Using cache
 ---> dfb8d1f66336
Step 10/16 : RUN wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB &&     apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB &&     echo "deb https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list &&     apt-get update -o Dir::Etc::sourcelist="sources.list.d/oneAPI.list" -o APT::Get::List-Cleanup="0" &&     apt-get install -y intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic-2023.0.0 &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 0eec8d44ecdf
Step 11/16 : RUN wget https://cloud.cees.ornl.gov/download/oneapi-for-nvidia-gpus-2023.0.0-linux.sh &&     chmod +x oneapi-for-nvidia-gpus-2023.0.0-linux.sh &&     ./oneapi-for-nvidia-gpus-2023.0.0-linux.sh -y &&     rm oneapi-for-nvidia-gpus-2023.0.0-linux.sh
 ---> Using cache
 ---> f8383f0eb758
Step 12/16 : RUN wget https://registrationcenter-download.intel.com/akdlm/irc_nas/19133/l_oneDPL_p_2022.0.0.25335.sh &&    chmod +x ./l_oneDPL_p_2022.0.0.25335.sh &&     ./l_oneDPL_p_2022.0.0.25335.sh -a -s --eula accept &&     rm l_oneDPL_p_2022.0.0.25335.sh
 ---> Using cache
 ---> 4547c283eed3
Step 13/16 : ENV PATH=/opt/intel/oneapi/compiler/latest/linux/bin-llvm/:$PATH
 ---> Using cache
 ---> 9d843a78af37
Step 14/16 : ENV PATH=/opt/intel/oneapi/compiler/latest/linux/bin/:$PATH
 ---> Using cache
 ---> 06363243a9a0
Step 15/16 : ENV LD_LIBRARY_PATH=/opt/intel/oneapi/compiler/latest/linux/lib:$LD_LIBRARY_PATH
 ---> Using cache
 ---> fbad7da2469e
Step 16/16 : ENV LD_LIBRARY_PATH=/opt/intel/oneapi/compiler/latest/linux/compiler/lib/intel64_lin:$LD_LIBRARY_PATH
 ---> Using cache
 ---> 7fc4a583c5e3
Successfully built 7fc4a583c5e3
Successfully tagged 3ab2a4a7d44b9d567024978791551b4277afb1be:latest