This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM intel/oneapi-hpckit:2025.3.0-0-devel-ubuntu24.04 as builder | |
| LABEL maintainer="HPC-ME Development" | |
| ... | |
| # Clone Spack v1.1.0 | |
| RUN mkdir -p /opt && cd /opt && \ | |
| git clone -b v1.1.0 https://github.com/spack/spack.git | |
| ... | |
| # Add packages with oneapi compiler | |
| RUN cd /opt/spack-environment && \ | |
| . /opt/spack/share/spack/setup-env.sh && \ |