File size: 400 Bytes
8d04e84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#get standard R container
FROM rocker/r-ver

# basic packages for shiny functionality
RUN R -q -e "install.packages(c('shiny', 'rmarkdown'))"

# copy the app to the image
WORKDIR /shinyapp
COPY --link app.R /shinyapp/app.R

# copy R profile for configuring port
COPY --link Rprofile.site /usr/local/lib/R/etc/

#Expose port of HF space
EXPOSE 7860
CMD ["R", "-q", "-e", "shiny::runApp('/shinyapp')"]