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 rocker/shiny
# install R package dependencies
RUN apt-get update && apt-get install -y \
libssl-dev \
git \
## clean up
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/ \
&& rm -rf /tmp/downloaded_packages/ /tmp/*.rds
## Install required R package dependencies
RUN install2.r --error \
shinythemes \
DT \
ggplot2 \
car \
nortest \
tseries \
RcmdrMisc \
lmtest \
## clean up
&& rm -rf /tmp/downloaded_packages/ /tmp/*.rds
## copy shiny app to shiny server location
COPY ./Regression/ /srv/shiny-server/