Skip to content
This repository was archived by the owner on Jul 25, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions rapidsai/devel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@ channels: \n\
&& cat /opt/conda/.condarc ; \
fi

# Install gcc7 - 7.5.0 to bring build stack in line with conda-forge
# Install gcc7 - 7.5.0 for CUDA 10.X builds and install latest
# 'libstdc++6' to be compatible with conda-forge dependencies
# for from-source builds
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& add-apt-repository -y ppa:ubuntu-toolchain-r/test \
&& apt-get update \
&& apt-get install -y gcc-7 g++-7 \
&& apt-get install -y gcc-7 g++-7 libstdc++6 \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 7 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 7 \
&& update-alternatives --set gcc /usr/bin/gcc-7 \
Expand Down