Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
FROM openanalytics/r-base
MAINTAINER John Erickson "erickj4@rpi.edu"
# system libraries of general use
RUN apt-get update && apt-get install -y \
sudo \
pandoc \
pandoc-citeproc \
libcurl4-gnutls-dev \
libcairo2-dev \
libxt-dev \
libssl-dev \
libssh2-1-dev \
libssl1.1 \
libxml2-dev \
libproj-dev \
libgdal-dev \
&& rm -rf /var/lib/apt/lists/*
# basic shiny functionality
RUN R -e 'install.packages(c("shiny","shinydashboard","shinyjs","DT","dplyr","ggplot2","shinyWidgets","tidyverse","tidyr","lubridate","plyr","scales","zoo","ggalt","leaflet","plotly","wesanderson","reactable"), repos="https://cloud.r-project.org/")'
# install dependencies of the euler app
#RUN R -e "install.packages('Rmpfr', repos='https://cloud.r-project.org/')"
# copy the app to the image
RUN mkdir /root/studysafe
COPY studysafe /root/studysafe
COPY Rprofile.site /usr/lib/R/etc/
EXPOSE 3838
CMD ["R", "-e", "shiny::runApp('/root/studysafe')"]