Skip to content
This repository was archived by the owner on Jul 25, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion rapidsai/base-runtime.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ RUN source activate base \
libstdcxx-ng=${BUILD_STACK_VER} \
python=${PYTHON_VER} \
"setuptools<50" \
&& sed -i 's/conda activate base/conda activate rapids/g' ~/.bashrc
&& sed -i 's/conda activate base/conda activate rapids/g' ~/.bashrc \
&& ln -s /opt/conda/.condarc /opt/conda/evns/rapids/.condarc

# Create symlink for old scripts expecting `gdf` conda env
RUN ln -s /opt/conda/envs/rapids /opt/conda/envs/gdf
Expand Down
3 changes: 2 additions & 1 deletion rapidsai/devel-centos7.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ RUN source activate base \
libstdcxx-ng=${BUILD_STACK_VER} \
python=${PYTHON_VER} \
"setuptools<50" \
&& sed -i 's/conda activate base/conda activate rapids/g' ~/.bashrc
&& sed -i 's/conda activate base/conda activate rapids/g' ~/.bashrc \
&& ln -s /opt/conda/.condarc /opt/conda/evns/rapids/.condarc

# Create symlink for old scripts expecting `gdf` conda env
RUN ln -s /opt/conda/envs/rapids /opt/conda/envs/gdf
Expand Down
3 changes: 2 additions & 1 deletion rapidsai/devel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ RUN source activate base \
libstdcxx-ng=${BUILD_STACK_VER} \
python=${PYTHON_VER} \
"setuptools<50" \
&& sed -i 's/conda activate base/conda activate rapids/g' ~/.bashrc
&& sed -i 's/conda activate base/conda activate rapids/g' ~/.bashrc \
&& ln -s /opt/conda/.condarc /opt/conda/evns/rapids/.condarc

# Create symlink for old scripts expecting `gdf` conda env
RUN ln -s /opt/conda/envs/rapids /opt/conda/envs/gdf
Expand Down