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

Commit

Permalink
Merge pull request #166 from mike-wendt/enh-gds-header
Browse files Browse the repository at this point in the history
ENH Add GDS header to rapidsai devel images
  • Loading branch information
mike-wendt authored Mar 16, 2021
2 parents b0a6f7d + a42f2a1 commit 0e6280d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
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" ]

0 comments on commit 0e6280d

Please sign in to comment.