8000 Update miniconda Docker image to use the maintained one. by jezdez · Pull Request #755 · conda/conda-lock · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update miniconda Docker image to use the maintained one. #755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 < 41E0 /td>
Loading
0