diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..37b9042 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM rocker/r-ver:4.1.3 + +LABEL org.opencontainers.image.licenses="GPL-2.0-or-later" \ + org.opencontainers.image.source="https://github.com/rocker-org/rocker-versioned2" \ + org.opencontainers.image.vendor="Rocker Project" \ + org.opencontainers.image.authors="Carl Boettiger " + +ENV S6_VERSION=v2.1.0.2 +ENV RSTUDIO_VERSION=2022.02.1+461 +ENV DEFAULT_USER=rstudio +ENV PANDOC_VERSION=default +ENV PATH=/usr/lib/rstudio-server/bin:$PATH + +RUN /rocker_scripts/install_rstudio.sh +RUN /rocker_scripts/install_pandoc.sh + +EXPOSE 8787 + +CMD ["/init"] \ No newline at end of file