From 3277cd87d391c771cd30aa68273c26095c59cc5b Mon Sep 17 00:00:00 2001 From: Christoph Reimer Date: Wed, 6 Nov 2024 23:12:06 +0100 Subject: [PATCH] add python verion pinning and remove pip cache clearing. --- jupyterlab/eodc-minimal-notebook.dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jupyterlab/eodc-minimal-notebook.dockerfile b/jupyterlab/eodc-minimal-notebook.dockerfile index 9a6a2e0..d362f8f 100644 --- a/jupyterlab/eodc-minimal-notebook.dockerfile +++ b/jupyterlab/eodc-minimal-notebook.dockerfile @@ -2,7 +2,8 @@ # Distributed under the terms of the Modified BSD License. ARG REGISTRY=quay.io ARG OWNER=jupyter -ARG BASE_IMAGE=$REGISTRY/$OWNER/minimal-notebook +ARG TAG=python-3.11.10 +ARG BASE_IMAGE=$REGISTRY/$OWNER/minimal-notebook:$TAG FROM $BASE_IMAGE LABEL maintainer="EODC Gmbh " @@ -35,7 +36,6 @@ RUN pip install --no-cache-dir --upgrade \ jupyterlab-s3-browser \ nbgitpuller \ psycopg2-binary \ - eodc && \ - pip cache purge + eodc USER ${NB_UID} \ No newline at end of file