File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/miniconda/.devcontainer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ USER root
3030# Copy scripts to execute
3131COPY add-notice.sh /tmp/library-scripts/
3232
33- # Setup conda to mirror contents from https://github.com/ContinuumIO/docker-images/blob/master /miniconda3/debian/Dockerfile
33+ # Setup conda to mirror contents from https://github.com/ContinuumIO/docker-images/blob/main /miniconda3/debian/Dockerfile
3434ENV LANG=C.UTF-8 \
3535 LC_ALL=C.UTF-8 \
3636 PATH=/opt/conda/bin:$PATH
@@ -56,7 +56,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
5656 && echo "conda activate base" >> ~/.bashrc \
5757 && apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts/add-notice.sh
5858
59- # Copy environment.yml (if found) to a temp locaition so we update the environment. Also
59+ # Copy environment.yml (if found) to a temp location so we update the environment. Also
6060# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.
6161COPY environment.yml* noop.txt /tmp/conda-tmp/
6262RUN if [ -f "/tmp/conda-tmp/environment.yml" ]; then umask 0002 && /opt/conda/bin/conda env update -n base -f /tmp/conda-tmp/environment.yml; fi \
You can’t perform that action at this time.
0 commit comments