jupyterlab-datascience-gpu/Dockerfile

12 lines
320 B
Docker
Raw Normal View History

2024-03-18 02:37:17 +00:00
FROM git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab-datascience:4.0.12d
2024-03-18 10:59:38 +00:00
2023-02-01 09:05:43 +00:00
ARG NB_USER="jovyan"
ARG NB_UID="1000"
2024-03-18 01:30:04 +00:00
ARG NB_GID="100"
2024-03-18 05:20:38 +00:00
ENV CONDA_CUDA_OVERRIDE="12.1"
2024-03-18 01:30:04 +00:00
ENV NUM_GPUS=1
2024-03-18 06:02:01 +00:00
USER root
2024-03-18 10:59:38 +00:00
RUN curl -fsSL https://ollama.com/install.sh | sh
RUN command -v systemctl >/dev/null && sudo systemctl stop ollama
2024-03-18 06:02:01 +00:00
USER $NB_UID