28 lines
707 B
Docker
28 lines
707 B
Docker
#
|
|
# NOTE: Use the Makefiles to build this image correctly.
|
|
#
|
|
|
|
ARG BASE_IMG=<jupyter-pytorch-gaudi>
|
|
FROM $BASE_IMG
|
|
|
|
# install - conda packages
|
|
# NOTE: we use mamba to speed things up
|
|
RUN mamba install -y -q \
|
|
bokeh==3.6.3 \
|
|
cloudpickle==3.1.1 \
|
|
dill==0.3.9 \
|
|
ipympl==0.9.6 \
|
|
matplotlib==3.10.0 \
|
|
numpy==1.26.4 \
|
|
pandas==2.2.3 \
|
|
scikit-image==0.25.1 \
|
|
scikit-learn==1.6.1 \
|
|
scipy==1.15.1 \
|
|
seaborn==0.13.2 \
|
|
xgboost==2.1.4 \
|
|
&& mamba clean -a -f -y
|
|
|
|
# install - requirements.txt
|
|
COPY --chown=${NB_USER}:${NB_GID} requirements.txt /tmp/requirements.txt
|
|
RUN python3 -m pip install -r /tmp/requirements.txt --quiet --no-cache-dir \
|
|
&& rm -f /tmp/requirements.txt |