|
| 1 | +ARG DEPS_IMAGE_NAME |
| 2 | +# clean builder without source code inside |
| 3 | +FROM ${DEPS_IMAGE_NAME} as builder |
| 4 | + |
| 5 | +# make sure that linker discovers cuda libs |
| 6 | +RUN echo "/usr/local/cuda/targets/x86_64-linux/lib" > /etc/ld.so.conf.d/999_cuda.conf && \ |
| 7 | + echo "/usr/local/cuda-11.8/targets/x86_64-linux/lib" >> /etc/ld.so.conf.d/999_cuda.conf && \ |
| 8 | + ldconfig && \ |
| 9 | + pip install --upgrade \ |
| 10 | + astunparse \ |
| 11 | + gast \ |
| 12 | + dm-tree && \ |
| 13 | + rm -rf /root/.cache/pip/ && \ |
| 14 | + # Install dependencies: opencv-python from 3.3.0.10 onwards uses QT which requires |
| 15 | + # X11 and other libraries that are not present in clean docker images or bundled there |
| 16 | + # 4.3.0.38 uses libGL.so as well so install libgl1-mesa-dev |
| 17 | + apt-get update && \ |
| 18 | + apt-get install -y --no-install-recommends libsm6 \ |
| 19 | + libice6 \ |
| 20 | + libxrender1 \ |
| 21 | + libxext6 \ |
| 22 | + libx11-6 \ |
| 23 | + glib-2.0 \ |
| 24 | + libgl1-mesa-dev && \ |
| 25 | + # for simple audio python wheel |
| 26 | + apt-get install -y --no-install-recommends libasound2-dev && \ |
| 27 | + apt-get update && \ |
| 28 | + apt-get install wget software-properties-common -y && \ |
| 29 | + CUDNN_VERSION=8.8.1.3-1 && \ |
| 30 | + CUBLASS_VERSION_11=11.11.3.6-1 && \ |
| 31 | + CUBLASS_VERSION_12=12.0.2.224-1 && \ |
| 32 | + NCCL_VERSION=2.16.5-1 && \ |
| 33 | + apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/3bf863cc.pub && \ |
| 34 | + add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/ /" && \ |
| 35 | + wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-ubuntu2004.pin && \ |
| 36 | + mv cuda-*.pin /etc/apt/preferences.d/cuda-repository-pin-600 && \ |
| 37 | + apt-get update && \ |
| 38 | + apt-get install -y --no-install-recommends \ |
| 39 | + libcudnn8=${CUDNN_VERSION}+cuda12.0 \ |
| 40 | + libcudnn8-dev=${CUDNN_VERSION}+cuda12.0 \ |
| 41 | + libnccl2=${NCCL_VERSION}+cuda12.0 \ |
| 42 | + libcublas-11-8=${CUBLASS_VERSION_11} \ |
| 43 | + libcublas-12-0=${CUBLASS_VERSION_12} \ |
| 44 | + libcufft-11-8 \ |
| 45 | + libcusparse-11-8 \ |
| 46 | + cuda-nvrtc-11-8 && \ |
| 47 | + rm -rf /var/lib/apt/lists/* |
| 48 | + |
| 49 | +RUN --mount=type=bind,source=qa/,target=/opt/dali/qa/ \ |
| 50 | + export INSTALL=YES && \ |
| 51 | + export CUDA_VERSION=$(echo $(nvcc --version) | sed 's/.*\(release \)\([0-9]\+\)\.\([0-9]\+\).*/\2\3/') && \ |
| 52 | + cd /opt/dali/qa/ && ./download_pip_packages.sh |
| 53 | + |
| 54 | +RUN --mount=type=bind,source=./DALI_EXTRA_VERSION,target=/opt/dali/DALI_EXTRA_VERSION,type=bind,source=qa/,target=/opt/dali/qa/ \ |
| 55 | + /bin/bash -c 'pushd /opt/dali/qa/ && \ |
| 56 | + source ./setup_dali_extra.sh && \ |
| 57 | + popd' |
| 58 | + |
| 59 | +ENV WITH_DYNAMIC_CUDA_TOOLKIT=ON \ |
| 60 | + WITH_DYNAMIC_NVJPEG=ON \ |
| 61 | + WITH_DYNAMIC_CUFFT=ON \ |
| 62 | + WITH_DYNAMIC_NPP=ON \ |
| 63 | + BUILD_CUFILE=ON \ |
| 64 | + NVIDIA_BUILD_ID=0 \ |
| 65 | + # to be adjusted later, first it to run from the build dir, the second is for nose test |
| 66 | + # so the user can `python3 -m nose_wrapper --verbose` |
| 67 | + PYTHONPATH=/opt/dali/test_comp/dali/python/:/opt/dali/qa \ |
| 68 | + DALI_EXTRA_PATH=/opt/dali_extra |
| 69 | + |
| 70 | +WORKDIR /opt/dali |
0 commit comments