File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -654,7 +654,8 @@ RUN \
654654 # GCC OpenMP (GOMP) support library
655655 apt-get install -y --no-install-recommends libgomp1 && \
656656 # Install Intel(R) Compiler Runtime - numba optimization
657- conda install -y --freeze-installed -c numba icc_rt && \
657+ # TODO: don't install, results in memory error
658+ # conda install -y --freeze-installed -c numba icc_rt && \
658659 # Install full pip requirements
659660 pip install --no-cache-dir --upgrade --upgrade-strategy only-if-needed -r ${RESOURCES_PATH}/libraries/requirements-full.txt && \
660661 # Setup Spacy
@@ -942,8 +943,6 @@ RUN \
942943 conda install -y -c conda-forge mamba && \
943944 # Faiss - A library for efficient similarity search and clustering of dense vectors.
944945 conda install -y --freeze-installed faiss-cpu && \
945- # New Python Libraries:
946- pip install --no-cache-dir catboost pycaret && \
947946 # Cleanup
948947 clean-layer.sh
949948
@@ -1004,7 +1003,7 @@ COPY resources/jupyter/ipython_config.py /etc/ipython/ipython_config.py
10041003
10051004# Branding of various components
10061005RUN \
1007- # Jupyter Bradning
1006+ # Jupyter Branding
10081007 cp -f $RESOURCES_PATH/branding/logo.png $CONDA_PYTHON_DIR"/site-packages/notebook/static/base/images/logo.png" && \
10091008 cp -f $RESOURCES_PATH/branding/favicon.ico $CONDA_PYTHON_DIR"/site-packages/notebook/static/base/images/favicon.ico" && \
10101009 cp -f $RESOURCES_PATH/branding/favicon.ico $CONDA_PYTHON_DIR"/site-packages/notebook/static/favicon.ico" && \
You can’t perform that action at this time.
0 commit comments