fix docker AS casing

This commit is contained in:
Patrick Schratz 2025-02-10 09:27:31 +01:00
commit 097a13ddd4
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -5,7 +5,7 @@ RUN apt update && apt install -y --no-install-recommends curl make ca-certificat
# - JAGS (needed for runjags which itself is again a dependency of many packages)
RUN curl -q -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
FROM ubuntu:jammy as final
FROM ubuntu:jammy AS final
ARG R_VERSION=4.4.2
ENV PATH=/opt/R/${R_VERSION}/bin:$PATH