-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BLD: Dockerfile for cpu and cuda (#831)
- Loading branch information
1 parent
aef2554
commit 183734a
Showing
13 changed files
with
214 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
FROM continuumio/miniconda3:24.9.2-0 AS base | ||
|
||
ARG PYTHON_VERSION=3.9 | ||
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN apt-get -y update \ | ||
&& apt-get install -y \ | ||
curl \ | ||
procps \ | ||
gcc \ | ||
g++ \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN conda install python=${PYTHON_VERSION} \ | ||
nodejs=20.17 \ | ||
conda-forge::mkl \ | ||
conda-forge::libnuma \ | ||
&& conda clean --all -f -y | ||
# TODO: UCXX is not mature enough for production, add it back when it's ready | ||
|
||
RUN pip install -U \ | ||
numpy \ | ||
scipy \ | ||
pandas \ | ||
numexpr \ | ||
psutil \ | ||
scikit-learn \ | ||
sqlalchemy \ | ||
tornado \ | ||
xoscar \ | ||
pyarrow \ | ||
cloudpickle \ | ||
azure-storage-blob \ | ||
adlfs \ | ||
fsspec \ | ||
s3fs \ | ||
pyopenssl \ | ||
datasets \ | ||
python-kubernetes \ | ||
jax \ | ||
uvloop \ | ||
Cython | ||
|
||
RUN if [ "$PYTHON_VERSION" == "3.9" ] ; then \ | ||
pip install -U 'setuptools<64' ; fi |
Oops, something went wrong.