We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9c1b5 commit 770abd5Copy full SHA for 770abd5
python/conda/Dockerfile.conda
@@ -21,6 +21,9 @@ ARG PYTHON_VERSION
21
RUN wget --quiet "https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh" -O /tmp/miniconda.sh && \
22
/bin/bash /tmp/miniconda.sh -b -p /opt/conda && \
23
rm /tmp/miniconda.sh && \
24
+ # Accept the ToS for the defaults channels:
25
+ /opt/conda/bin/conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \
26
+ /opt/conda/bin/conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r &&
27
# Install the correct version of python (as the time of
28
# writing, anaconda installed python 3.8 by default)
29
/opt/conda/bin/conda install python=${PYTHON_VERSION} && \
0 commit comments