From 0ec522c7d86eaa4204013da13653b66f6a01eb52 Mon Sep 17 00:00:00 2001 From: Adam Lewis <23342526+Adam-D-Lewis@users.noreply.github.com> Date: Tue, 18 Feb 2025 17:34:10 -0600 Subject: [PATCH] remove pip check --- Dockerfile.jupyterlab | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.jupyterlab b/Dockerfile.jupyterlab index 0052631..a5cc94c 100644 --- a/Dockerfile.jupyterlab +++ b/Dockerfile.jupyterlab @@ -55,8 +55,7 @@ RUN \ else \ ENV_FILE=/opt/jupyterlab/environment.yaml ; \ fi ; \ - /opt/scripts/install-conda-environment.sh "${ENV_FILE}" 'true' && \ - pip check || exit 1 + /opt/scripts/install-conda-environment.sh "${ENV_FILE}" 'true' # ========== code-server install ============ ENV PATH=/opt/conda/envs/${DEFAULT_ENV}/share/code-server/bin:${PATH}