From c910de12ff5ebc77b2fd0ea15a5b8dbbd05f37d8 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 21 Dec 2021 19:34:42 -0500 Subject: [PATCH] Update Dockerfile-ubuntu_18_04 --- scripts/Dockerfile-ubuntu_18_04 | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/scripts/Dockerfile-ubuntu_18_04 b/scripts/Dockerfile-ubuntu_18_04 index beb47c36..5ee33ae3 100644 --- a/scripts/Dockerfile-ubuntu_18_04 +++ b/scripts/Dockerfile-ubuntu_18_04 @@ -52,20 +52,6 @@ RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave / RUN wget https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_470.57.02_linux.run --progress=bar:force:noscroll -q --show-progress -O /root/cuda.run && chmod a+x /root/cuda.run RUN /root/cuda.run --silent --toolkit --toolkitpath=/usr --no-opengl-libs --no-man-page --no-drm && rm /root/cuda.run -RUN apt-get update -y && \ - apt-get install -y \ - gawk \ - bison \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir glibc-src && cd glibc-src && \ - wget http://ftp.gnu.org/gnu/libc/glibc-2.31.tar.gz && \ - tar -xvzf glibc-2.31.tar.gz && \ - mkdir build && cd build && \ - ../glibc-2.31/configure --prefix=/usr/glibc && \ - make && \ - make install - COPY build-private.sh /root/build.sh