-
-
Notifications
You must be signed in to change notification settings - Fork 327
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
Install Miniforge in a docker container #617
Comments
Maybe you are luckier with |
Also would checkout the miniforge-images repo Edit: Or previous attempts to create Windows containers ( conda-forge/docker-images#209 ) |
Hi guys, Thank you for the suggestions. I went through with a not so good workaround:
Hope it would help anyone in a similar situation. Thanks, |
As long as the path inside the Docker container is the same as in the original installation path (C:\Miniforge3), you should be fine! |
Got it, thank you for the clarification. Nick |
Comment:
Hello everyone,
for pipeline design purposes, I would like to build an image based on Linux and one based on Windows.
I always use MIniforge in my development computer and what I want is try to innstall it also in containers.
While on a Linux based image everything runs smoothly, I can't install MIniforge on a Windows based container.
Here are the steps I went through:
docker pull m365pnp/powershell:1.10.0-nanoserver-1809
docker run -it m365pnp/powershell:1.10.0-nanoserver-1809 pwsh
curl -L -O -k "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe"
Start-Process "C:\Miniforge3-Windows-x86_64.exe" -ArgumentList "/S /D=C:\Miniforge3" -NoNewWindow -Wait
By launching the last step command It actually does nothing, no output and no installation performed.
Do you have any idea on the matter? Did you follow other ways to build a pipeline with windows based images?
Many thanks,
Nick
The text was updated successfully, but these errors were encountered: