From b1c6105a33b77eeb2abf4aa116c591fdd2a15fcb Mon Sep 17 00:00:00 2001 From: Ulrich <ulrich.kerzel@rwth-aachen.de> Date: Tue, 18 Mar 2025 07:53:49 +0100 Subject: [PATCH] try to call pip directly in dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 73fe318..ce974ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ ARG disp_name="Python 3.11 (ipykernel)" # Install packages via requirements.txt ADD requirements.txt . -#RUN pip install -r requirements.txt -RUN "${CONDA_DIR}/envs/${conda_env}/bin/pip" install --no-cache-dir -r requirements.txt +RUN pip install -r requirements.txt +#RUN "${CONDA_DIR}/envs/${conda_env}/bin/pip" install --no-cache-dir -r requirements.txt # .. Or update conda base environment to match specifications in environment.yml #ADD environment.yml /tmp/environment.yml -- GitLab