diff --git a/Dockerfile b/Dockerfile index 0672673..ca590b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ########################### # Builder image ########################### -FROM debian:buster-20240211 AS builder +FROM debian:bookworm-20240211 AS builder ENV V_RStudio=R-4.3.3 ENV V_ShinyServer=v1.5.21.1012 @@ -24,6 +24,9 @@ RUN apt-get update && apt-get install -y \ texlive-fonts-extra \ screen \ wget \ + tar \ + xz-utils \ + coreutils \ libpcre2-dev \ git \ apt-utils \ @@ -86,7 +89,7 @@ RUN make -j4 install ########################### # Production image ########################### -FROM debian:buster-20240211 as shiny +FROM debian:bookworm-20240211 as shiny COPY --from=builder /usr/local/bin/R /usr/local/bin/R COPY --from=builder /usr/local/lib/R /usr/local/lib/R COPY --from=builder /usr/local/bin/Rscript /usr/local/bin/Rscript