Skip to content

Commit

Permalink
Create r-ver_4.4.1.Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Emma-Hnrqs <[email protected]>
  • Loading branch information
Emma-Hnrqs authored Oct 11, 2024
1 parent e713f21 commit c876a9c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions 02-dockerfiles/r-ver_4.4.1.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM docker.io/library/debian:bullseye

LABEL org.opencontainers.image.licenses="GPL-3.0" \
org.opencontainers.image.source="https://github.com/umr1283/docker-versioned" \
org.opencontainers.image.authors="Mickaël Canouil <https://mickael.canouil.fr/>"

ENV R_VERSION=4.4.1
ENV R_HOME=/usr/local/lib/R
ENV CRAN=https://cran.r-project.org
ENV LANG=en_GB.UTF-8
ENV TZ=Etc/UTC

COPY assets /docker_scripts

RUN chmod --recursive +x /docker_scripts
RUN /docker_scripts/install_lang.sh
RUN /docker_scripts/install_r.sh
RUN /docker_scripts/install_git.sh
RUN /docker_scripts/install_gitlfs.sh
RUN /docker_scripts/install_python.sh
RUN /docker_scripts/install_msfonts.sh

CMD ["R"]

0 comments on commit c876a9c

Please sign in to comment.