You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In lieu of waiting for things to emerge from experimental mode in the moby project, specifying the CPU arch as a build ARG or ENV variable (TARGET_CPU_ARCH=x86_64 | aarch64 | ppe64le may be the most portable way to support multiple architectures (and any container builder) with the miniforge docker container.
Could this include the arch string in the miniforge download URL?
docker-images/miniforge3/Dockerfile
Line 25 in 8ae623a
https://github.com/conda-forge/miniforge/releases
Miniforge3-${MINIFORGE_VERSION}-Linux-x86_64.sh
Miniforge3-${MINIFORGE_VERSION}-Linux-aarch64.sh
Miniforge3-${MINIFORGE_VERSION}-Linux-ppe64le.sh
How to make the Dockerfile pass the arch through to be templated into the miniforge release URL?
--platform
flag worksDEB_TARGET_GNU_CPU=aarch64
ARG
orENV
variable (TARGET_CPU_ARCH=x86_64 | aarch64 | ppe64le
may be the most portable way to support multiple architectures (and any container builder) with the miniforge docker container....
https://github.com/ansible-community/molecule/blob/master/molecule/data/Dockerfile.j2#L17-L22
The text was updated successfully, but these errors were encountered: