File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ ARG PYTHON_VERSION
2121RUN wget --quiet "https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh" -O /tmp/miniconda.sh && \
2222 /bin/bash /tmp/miniconda.sh -b -p /opt/conda && \
2323 rm /tmp/miniconda.sh && \
24+ # Use community packages from conda-forge instead of Anaconda Inc. default channels
25+ # which require accepting terms of service & using commercial license for orgs with more than 200 employees
26+ /opt/conda/bin/conda config --add channels conda-forge && \
27+ /opt/conda/bin/conda config --remove channels defaults && \
2428 # Install the correct version of python (as the time of writing, anaconda
2529 # installed python 3.11 by default) for parity with our base image
2630 /opt/conda/bin/conda install python=${PYTHON_VERSION} && \
You can’t perform that action at this time.
0 commit comments