-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
The current Dockerfile contains the installation path for miniconda as shown below.
RUN curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
chmod +x ~/miniconda.sh && \
~/miniconda.sh -b -p /opt/conda && \
rm ~/miniconda.shHowever, an error occurs; you must change it as below to avoid an error.
RUN curl -o ~/miniconda.sh -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
chmod +x ~/miniconda.sh && \
~/miniconda.sh -b -p /opt/conda && \
rm ~/miniconda.shJohanARxenogenesi
Metadata
Metadata
Assignees
Labels
No labels
