Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

ENH Add GDS header to rapidsai devel images #166

Merged
merged 2 commits into from
Mar 16, 2021
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 miniforge-cuda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ RUN wget --quiet ${MINIFORGE_URL} -O /miniforge.sh \
&& ln -s /opt/conda /conda

# Install tini for init
RUN conda install -k -y tini
RUN conda install -k -y tini \
|| conda install -k -y tini

# Clean up conda and set permissions for all users
RUN chmod -R ugo+w /opt/conda \
Expand Down
3 changes: 3 additions & 0 deletions rapidsai/devel-centos7.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,8 @@ RUN chmod -R ugo+w /opt/conda \
&& conda clean -tipy \
&& chmod -R ugo+w /opt/conda

# Add GDS header cufile.h to image
COPY cufile.h /usr/local/cuda/targets/x86_64-linux/lib/cufile.h

ENTRYPOINT [ "/usr/bin/tini", "--" ]
CMD [ "/bin/bash" ]
3 changes: 3 additions & 0 deletions rapidsai/devel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,5 +137,8 @@ RUN chmod -R ugo+w /opt/conda \
&& conda clean -tipy \
&& chmod -R ugo+w /opt/conda

# Add GDS header cufile.h to image
COPY cufile.h /usr/local/cuda/targets/x86_64-linux/lib/cufile.h

ENTRYPOINT [ "/usr/bin/tini", "--" ]
CMD [ "/bin/bash" ]