11 lines
582 B
Text
11 lines
582 B
Text
ARG VERSION
|
|
FROM alpine:${VERSION} AS jags
|
|
|
|
ARG JAGS_VERSION=4.3.2
|
|
|
|
RUN apk add -q --no-cache curl tar make lapack lapack-dev blas blas-dev gcc gfortran g++ git cmake tk-dev xz
|
|
|
|
# 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-${JAGS_VERSION}.tar.gz && \
|
|
tar -xzf JAGS-${JAGS_VERSION}.tar.gz && cd JAGS-${JAGS_VERSION} && ./configure --enable-silent-rules && make 2>&1
|