Created
April 22, 2025 18:12
-
-
Save jdbrice/65aff6566ac636b84178911846e73c5c to your computer and use it in GitHub Desktop.
SuperChic 5.4.1 Dockerfile Fedora:40
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 fedora:40 | |
RUN yum -y install gcc gcc-c++ gcc-gfortran make cmake cmake-data git | |
RUN yum -y install HepMC3 HepMC3-devel HepMC3-search lhapdf lhapdf-devel python-lhapdf pythia8 pythia8-devel | |
ADD SuperChic /SuperChic | |
RUN cd /SuperChic && cmake -S . -B BUILD && cmake --build BUILD && cmake --install BUILD | |
RUN yum -y install vim | |
RUN lhapdf install MSHT20qed_nnlo | |
WORKDIR /SuperChic/BUILD/bin | |
# docker build -t superchic -f Dockerfile ./ | |
# docker run -it --rm superchic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment