jupyterlab-datascience-gpu/Dockerfile

14 lines
439 B
Docker
Raw Permalink Normal View History

2024-06-01 09:40:21 +00:00
FROM git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab-datascience:4.0.12f
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
2024-06-30 11:09:01 +00:00
RUN pip install git+https://git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab_ollama_launcher
2024-03-18 06:02:01 +00:00
USER $NB_UID
2024-07-09 13:32:11 +00:00
ENV OLLAMA_MODELS=/tmp/.ollama
ENV PGPT_PROFILES=ollama
2024-08-07 06:07:35 +00:00
RUN pip install open-webui==0.3.10