Skip to content

Commit

Permalink
Merge pull request #755 from jezdez/miniconda3
Browse files Browse the repository at this point in the history
Update miniconda Docker image to use the maintained one.
  • Loading branch information
maresb authored Nov 26, 2024
2 parents 76e22dc + 1cd4dd8 commit e3542d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM continuumio/miniconda:latest
FROM continuumio/miniconda3:latest

RUN pip install conda-lock

ENTRYPOINT conda-lock
ENTRYPOINT conda-lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ You want a dockerfile that is structured something similar to this
# Dockerfile
# Build container
FROM continuumio/miniconda:latest as conda
FROM continuumio/miniconda3:latest as conda
ADD conda-linux-64.lock /locks/conda-linux-64.lock
RUN conda create -p /opt/env --copy --file /locks/conda-linux-64.lock
Expand Down
2 changes: 1 addition & 1 deletion docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You want a dockerfile that is structured something similar to this
# -----------------
# Builder container
# -----------------
FROM continuumio/miniconda:latest as builder
FROM continuumio/miniconda3:latest as builder

COPY conda-linux-64.lock /locks/conda-linux-64.lock
RUN conda create -p /opt/env --copy --file /locks/conda-linux-64.lock
Expand Down

0 comments on commit e3542d6

Please sign in to comment.