refactor: containerfile setups
Some checks failed
ci/crow/cron/images/6 Pipeline failed
ci/crow/cron/images/5 Pipeline failed
ci/crow/cron/images/3 Pipeline failed
ci/crow/cron/images/4 Pipeline failed
ci/crow/cron/images/2 Pipeline failed
ci/crow/cron/images/1 Pipeline failed

This commit is contained in:
Patrick Schratz 2025-06-03 22:04:09 +02:00
commit 1d06a52221
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -0,0 +1,13 @@
ARG VERSION
FROM redhat/ubi${VERSION} AS jags
ARG RED_HAT_DEV_PW
ARG VERSION
RUN subscription-manager register --username mail@devxy.io --password "$RED_HAT_DEV_PW" && subscription-manager repos --enable codeready-builder-for-rhel-${VERSION}-$(arch)-rpms
RUN dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-${VERSION}.noarch.rpm && dnf install -y epel-release
RUN dnf install -y -q gcc-c++ lapack-devel make git ca-certificates
# These usually are not packaged in OS repositories and need to be installed from source
# - JAGS (needed for runjags which itself is again a dependency of many packages)
RUN curl -s -L -O https://sourceforge.net/projects/mcmc-jags/files/JAGS/4.x/Source/JAGS-4.3.2.tar.gz && \
tar -xzf JAGS-4.3.2.tar.gz && cd JAGS-4.3.2 && ./configure --enable-silent-rules && make 2>&1