FROM nvidia/cuda:10.1-base-ubuntu18.04 LABEL maintainer="Amazon AI" # prevent stopping by user interaction ENV DEBIAN_FRONTEND noninteractive ENV DEBCONF_NONINTERACTIVE_SEEN true ENV SAGEMAKER_TRAINING_MODULE sagemaker_tensorflow_container.training:main ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 ENV PYTHONIOENCODING=UTF-8 ENV LANG=C.UTF-8 ENV LC_ALL=C.UTF-8 # Set environment variables for MKL # For more about MKL with TensorFlow see: # https://www.tensorflow.org/performance/performance_guide#tensorflow_with_intel%C2%AE_mkl_dnn ENV KMP_AFFINITY=granularity=fine,compact,1,0 ENV KMP_BLOCKTIME=1 ENV KMP_SETTINGS=0 ARG PYTHON=python3 ARG PYTHON_PIP=python3-pip ARG PIP=pip3 ARG TF_URL=https://tensorflow-aws.s3-us-west-2.amazonaws.com/2.1/AmazonLinux/gpu/final/tensorflow_gpu-2.1.0-cp36-cp36m-manylinux2010_x86_64.whl RUN apt-get update && apt-get install -y --no-install-recommends --allow-unauthenticated \ python3-dev \ python3-pip \ python3-setuptools \ ca-certificates \ cuda-command-line-tools-10-1 \ cuda-cudart-dev-10-1 \ cuda-cufft-dev-10-1 \ cuda-curand-dev-10-1 \ cuda-cusolver-dev-10-1 \ cuda-cusparse-dev-10-1 \ curl \ libcudnn7=7.6.2.24-1+cuda10.1 \ # TensorFlow doesn't require libnccl anymore but Open MPI still depends on it libnccl2=2.4.7-1+cuda10.1 \ libgomp1 \ libnccl-dev=2.4.7-1+cuda10.1 \ libfreetype6-dev \ libhdf5-serial-dev \ libpng-dev \ libzmq3-dev \ git \ wget \ vim \ build-essential \ openssh-client \ openssh-server \ zlib1g-dev \ # Install dependent library for OpenCV libgtk2.0-dev \ #cuda-cublas-dev not available with 10-1, install libcublas instead #it will downgrade the cublas from 10-2 to 10-1 #adding an extra flag --allow-downgrades for it && apt-get update \ && apt-get install -y --no-install-recommends --allow-unauthenticated --allow-downgrades \ libcublas10=10.1.0.105-1 \ libcublas-dev=10.1.0.105-1 \ # The 'apt-get install' of nvinfer-runtime-trt-repo-ubuntu1804-5.0.2-ga-cuda10.0 # adds a new list which contains libnvinfer library, so it needs another # 'apt-get update' to retrieve that list before it can actually install the # library. # We don't install libnvinfer-dev since we don't need to build against TensorRT, # and libnvinfer4 doesn't contain libnvinfer.a static library. # nvinfer-runtime-trt-repo doesn't have a 1804-cuda10.1 version yet. see: # https://developer.download.nvidia.cn/compute/machine-learning/repos/ubuntu1804/x86_64/ && apt-get update && apt-get install -y --no-install-recommends --allow-unauthenticated \ nvinfer-runtime-trt-repo-ubuntu1804-5.0.2-ga-cuda10.0 \ && apt-get update && apt-get install -y --no-install-recommends --allow-unauthenticated \ libnvinfer6=6.0.1-1+cuda10.1 \ && rm -rf /var/lib/apt/lists/* \ && mkdir -p /var/run/sshd ########################################################################### # Horovod & its dependencies ########################################################################### # Install Open MPI RUN mkdir /tmp/openmpi \ && cd /tmp/openmpi \ && curl -fSsL -O https://download.open-mpi.org/release/open-mpi/v4.0/openmpi-4.0.1.tar.gz \ && tar zxf openmpi-4.0.1.tar.gz \ && cd openmpi-4.0.1 \ && ./configure --enable-orterun-prefix-by-default \ && make -j $(nproc) all \ && make install \ && ldconfig \ && rm -rf /tmp/openmpi # Create a wrapper for OpenMPI to allow running as root by default RUN mv /usr/local/bin/mpirun /usr/local/bin/mpirun.real \ && echo '#!/bin/bash' > /usr/local/bin/mpirun \ && echo 'mpirun.real --allow-run-as-root "$@"' >> /usr/local/bin/mpirun \ && chmod a+x /usr/local/bin/mpirun # Configure OpenMPI to run good defaults: # --bind-to none --map-by slot --mca btl_tcp_if_exclude lo,docker0 RUN echo "hwloc_base_binding_policy = none" >> /usr/local/etc/openmpi-mca-params.conf \ && echo "rmaps_base_mapping_policy = slot" >> /usr/local/etc/openmpi-mca-params.conf # Set default NCCL parameters RUN echo NCCL_DEBUG=INFO >> /etc/nccl.conf ENV LD_LIBRARY_PATH=/usr/local/cuda/extras/CUPTI/lib64:/usr/local/openmpi/lib:$LD_LIBRARY_PATH ENV PATH /usr/local/openmpi/bin/:$PATH ENV PATH=/usr/local/nvidia/bin:$PATH # SSH login fix. Otherwise user is kicked off after login RUN mkdir -p /var/run/sshd \ && sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd # Create SSH key. RUN mkdir -p /root/.ssh/ \ && ssh-keygen -q -t rsa -N '' -f /root/.ssh/id_rsa \ && cp /root/.ssh/id_rsa.pub /root/.ssh/authorized_keys \ && printf "Host *\n StrictHostKeyChecking no\n" >> /root/.ssh/config WORKDIR / RUN ${PIP} --no-cache-dir install --upgrade \ pip \ setuptools # Some TF tools expect a "python" binary RUN ln -s $(which ${PYTHON}) /usr/local/bin/python \ && ln -s $(which ${PIP}) /usr/bin/pip # install PyYAML==5.1.2 to avoid conflict with latest awscli # # python-dateutil==2.8.0 to satisfy botocore associated with latest awscli RUN ${PIP} install --no-cache-dir -U \ numpy==1.18.1 \ scipy==1.2.2 \ scikit-learn==0.22 \ pandas==1.0.1 \ Pillow==7.0.0 \ h5py==2.10.0 \ keras_applications==1.0.8 \ keras_preprocessing==1.1.0 \ keras==2.3.1 \ smdebug==0.7.2 \ python-dateutil==2.8.1 \ pyYAML==5.3.1 \ requests==2.22.0 \ awscli \ mpi4py==3.0.3 \ opencv-python==4.2.0.32 \ sagemaker==1.50.17 \ sagemaker-experiments==0.1.7 \ "sagemaker-tensorflow>=2.1,<2.2" \ "sagemaker-tensorflow-training>2,<4" \ # Let's install TensorFlow separately in the end to avoid # the library version to be overwritten && ${PIP} install --no-cache-dir -U \ ${TF_URL} # Install Horovod, temporarily using CUDA stubs RUN ldconfig /usr/local/cuda-10.1/targets/x86_64-linux/lib/stubs \ && HOROVOD_GPU_ALLREDUCE=NCCL HOROVOD_WITH_TENSORFLOW=1 ${PIP} install --no-cache-dir horovod==0.18.2 \ && ldconfig # Allow OpenSSH to talk to containers without asking for confirmation RUN cat /etc/ssh/ssh_config | grep -v StrictHostKeyChecking > /etc/ssh/ssh_config.new \ && echo " StrictHostKeyChecking no" >> /etc/ssh/ssh_config.new \ && mv /etc/ssh/ssh_config.new /etc/ssh/ssh_config ADD https://raw.githubusercontent.com/aws/aws-deep-learning-containers-utils/master/deep_learning_container.py /usr/local/bin/deep_learning_container.py RUN chmod +x /usr/local/bin/deep_learning_container.py RUN curl https://aws-dlc-licenses.s3.amazonaws.com/tensorflow-2.1/license.txt -o /license.txt CMD ["bin/bash"]