Skip to content

Commit 58a1f93

Browse files
committed
Remove icc_rt to prevent memory errors
1 parent fdfb89c commit 58a1f93

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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
10061005
RUN \
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" && \

0 commit comments

Comments
 (0)