Skip to content

Commit 19bbf20

Browse files
authored
Update Dockerfile (devcontainers#1007)
1 parent c71a61a commit 19bbf20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/miniconda/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ USER root
3030
# Copy scripts to execute
3131
COPY 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
3434
ENV 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.
6161
COPY environment.yml* noop.txt /tmp/conda-tmp/
6262
RUN 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 \

0 commit comments

Comments
 (0)