From cec0c64394172a036a235c006f315b022baf5c2c Mon Sep 17 00:00:00 2001 From: Ben Wibking Date: Tue, 27 Aug 2024 15:54:40 -0400 Subject: [PATCH] install python headers --- scripts/docker/Dockerfile.nvcc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/docker/Dockerfile.nvcc b/scripts/docker/Dockerfile.nvcc index f4aef9119224..34d4eb9433c0 100644 --- a/scripts/docker/Dockerfile.nvcc +++ b/scripts/docker/Dockerfile.nvcc @@ -1,7 +1,7 @@ FROM nvidia/cuda:12.6.0-devel-ubuntu24.04 RUN apt-get clean && apt-get update -y && \ - DEBIAN_FRONTEND="noninteractive" TZ=America/New_York apt-get install -y --no-install-recommends git python3-minimal libpython3-stdlib bc hwloc wget openssh-client python3-numpy python3-h5py python3-matplotlib python3-scipy python3-pip lcov curl cuda-nsight-systems-12-6 cmake ninja-build + DEBIAN_FRONTEND="noninteractive" TZ=America/New_York apt-get install -y --no-install-recommends git python3-minimal libpython3-stdlib bc hwloc wget openssh-client python3-numpy python3-h5py python3-matplotlib python3-scipy python3-pip lcov curl cuda-nsight-systems-12-6 cmake ninja-build libpython3-dev RUN pip3 install unyt --break-system-packages @@ -37,8 +37,6 @@ RUN cd /tmp && \ cd / && \ rm -rf /tmp/hdf5-1.12.2* -RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10 - RUN curl -L https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz -o cmake-3.23.2-linux-x86_64.tar.gz && \ tar -xzf cmake-3.23.2-linux-x86_64.tar.gz -C /opt