Fix cusotm env recipe

This commit is contained in:
Ayaz Salikhov
2023-12-08 05:47:10 +01:00
parent 2760b2e075
commit 027d3a1026

View File

@@ -31,7 +31,7 @@ RUN "${CONDA_DIR}/envs/${env_name}/bin/pip" install --no-cache-dir \
# This changes the custom Python kernel so that the custom environment will # This changes the custom Python kernel so that the custom environment will
# be activated for the respective Jupyter Notebook and Jupyter Console # be activated for the respective Jupyter Notebook and Jupyter Console
# hadolint ignore=DL3059 # hadolint ignore=DL3059
RUN /opt/setup-scripts/activate_notebook_custom_env.py "{env_name}" RUN /opt/setup-scripts/activate_notebook_custom_env.py "${env_name}"
# Comment the line above and uncomment the section below instead to activate the custom environment by default # Comment the line above and uncomment the section below instead to activate the custom environment by default
# Note: uncommenting this section makes "${env_name}" default both for Jupyter Notebook and Terminals # Note: uncommenting this section makes "${env_name}" default both for Jupyter Notebook and Terminals