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:
- download a windows image with powershell
docker pull m365pnp/powershell:1.10.0-nanoserver-1809
- run the container and spawn a powershell
docker run -it m365pnp/powershell:1.10.0-nanoserver-1809 pwsh
- download miniforge installation esecutable inside the container
curl -L -O -k "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe"
- Run installation
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
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-1809docker run -it m365pnp/powershell:1.10.0-nanoserver-1809 pwshcurl -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 -WaitBy 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