-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8e0807
commit 03c4739
Showing
3 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM ubuntu:24.04 | ||
RUN useradd -ms /bin/bash easybuild | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt update \ | ||
&& apt install -y curl python3 python3-pip \ | ||
&& LMOD_VERSION=8.7.37 \ | ||
&& curl -OL https://github.com/surak/Lmod/releases/download/${LMOD_VERSION}/lmod_${LMOD_VERSION}_all.deb \ | ||
&& apt install -y ./lmod_${LMOD_VERSION}_all.deb | ||
# debianutils provides 'which' command | ||
RUN apt install -y bzip2 debianutils diffutils file gcc g++ git gzip libibverbs-dev openssl libssl-dev make patch sudo tar unzip xz-utils | ||
# Installing system-wide Python packages is not possible anymore, c.f. PEP 668 | ||
# RUN python3 -m pip install archspec |