-
Notifications
You must be signed in to change notification settings - Fork 17
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 EasyBuild as a module in base image + clean up GCC 9.3.0 image #8
Changes from all commits
8613cb2
8dd0165
0a7ee38
6aa7927
0027aa1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
FROM centos:7.8.2003 | ||
# Set default easybuild version | ||
ARG IMG_REGISTRY=docker.io | ||
ARG IMG_ORG=library | ||
ARG IMG_NAME=centos | ||
ARG IMG_TAG=7.8.2003 | ||
# allow CI/CD to change all of the above | ||
FROM ${IMG_REGISTRY}/${IMG_ORG}/${IMG_NAME}:${IMG_TAG} | ||
# set default easybuild version | ||
ARG EB_VER=4.2.1 | ||
LABEL easybuild_version=${EB_VER} | ||
# install required packages (EPEL is required for Lmod) | ||
RUN yum install -y epel-release \ | ||
&& yum install -y bzip2 file gcc-c++ git Lmod make openssl-devel patch python3-pip unzip vim which | ||
&& yum install -y bzip2 file gcc-c++ git Lmod make openssl openssl-devel patch python3-pip unzip vim which rdma-core-devel | ||
# install EasBuild & archspec | ||
RUN pip3 install easybuild==${EB_VER} archspec | ||
# add 'easybuild' user | ||
RUN useradd -ms /bin/bash easybuild | ||
# create /scratch & /easybuild directories | ||
RUN mkdir /scratch && chown easybuild:easybuild /scratch \ | ||
&& mkdir /easybuild && chown easybuild:easybuild /easybuild | ||
# disable output buffering in Python, so we see EasyBuild output as it progresses | ||
ENV PYTHONUNBUFFERED=TRUE | ||
# define $EB_PYTHON to ensure EasyBuild runs with python3 | ||
ENV EB_PYTHON=python3 | ||
# Define the ENTRYPOINT for subsequent commands (CMD) | ||
|
@@ -19,5 +29,20 @@ SHELL ["/bin/bash", "-l", "-c"] | |
CMD ["bash"] | ||
# switch to 'easybuild' user | ||
USER easybuild | ||
# install EasyBuild as a module (& clean up /scratch) | ||
RUN eb --install-latest-eb-release --prefix /scratch --installpath /easybuild \ | ||
&& rm -rf /scratch/* | ||
# print info on Lmod & EasyBuild | ||
RUN ml --version && which -a eb && eb --version & eb --show-system-info | ||
RUN ml use /easybuild/modules/all \ | ||
&& ml EasyBuild \ | ||
&& ml --version \ | ||
&& which -a eb \ | ||
&& eb --version \ | ||
&& eb --show-system-info | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. beautiful There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 😍 |
||
# remove globally installed EasyBuild, we can use the module going forward | ||
USER root | ||
RUN pip3 uninstall -y easybuild | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. potential optimization #11 |
||
# switch to 'easybuild' user | ||
USER easybuild | ||
# make sure we start in /home/easybuild rather than / when shell in started in container | ||
WORKDIR /home/easybuild |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
FROM easybuilders/test:centos7-eb421-gcc930 | ||
USER root | ||
RUN yum install -y rdma-core-devel openssl | ||
USER easybuild | ||
ARG IMG_REGISTRY=docker.io | ||
ARG IMG_ORG=easybuilders | ||
ARG IMG_NAME=test | ||
ARG IMG_TAG=centos7-eb421-gcc930 | ||
# allow CI/CD to change all of the above | ||
FROM ${IMG_REGISTRY}/${IMG_ORG}/${IMG_NAME}:${IMG_TAG} | ||
|
||
# install software & accompanying modules | ||
RUN (eb foss-2020a.eb --robot || tail -100 `eb --last-log`) \ | ||
# clean up everything in /scratch | ||
&& rm -rf /scratch/* | ||
# finalize /easybuild, no changes can be made in /easybuild that persist! | ||
VOLUME /easybuild | ||
# make sure we start in /home/easybuild rather than / when shell in started in container | ||
WORKDIR /home/easybuild |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we install rdma-core-devel here? Who is to say someone wants to run RDMA stuff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having
rdma-core-devel
installed affects how OpenMPI is configured (--with-verbs
or--without-verbs
).I'm happy to remove it, it's probably overkill here, but I don't think it hurts to have it installed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just wonder if we need to install this in the base - but ok... premature optimization I'd say
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, I don't think it hurts much, except for size of the container a little bit?
Stripping it out is not a huge deal for the tutorial, and if it's there you can add
rdma-core-devel
in another image on top of this one, and rebuildOpenMPI
(and everything that depends on it...), if you really want IB support, but that's a hassle.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's keep it for now... and put a pin in it for a later discussion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Open an issue on it in this repo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#10