Skip to content

Commit

Permalink
fix(338): Patch issue with hanging docker builds (#339)
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Lee <[email protected]>
  • Loading branch information
ryanolee and Ryan Lee authored Jan 8, 2025
1 parent b09dd2a commit 62fa18b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ ENV PATH /opt/conda/bin:$PATH
ENV PYTHON_VERSION=${python}
ENV DASK_VERSION=${release}

RUN mamba install -y \
RUN export G_SLICE=always-malloc \
&& mamba install -y \
"mamba>=0.27.0" \
python=${PYTHON_VERSION} \
nomkl \
Expand Down
3 changes: 2 additions & 1 deletion notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ RUN MAGICARCH=$(dpkg --print-architecture) && \

USER $NB_USER

RUN mamba install -y \
RUN export G_SLICE=always-malloc \
&& mamba install -y \
python=${PYTHON_VERSION} \
nomkl \
cytoolz \
Expand Down

0 comments on commit 62fa18b

Please sign in to comment.