Spaces:
Sleeping
Sleeping
File size: 458 Bytes
1023343 cf66814 1023343 caac760 1023343 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
FROM rocker/shiny-verse:latest
COPY /data /code/data
COPY /www /code/www
WORKDIR /code
# Install stable packages from CRAN
RUN install2.r --error \
ggExtra \
shiny \
vetiver \
shinyWidgets \
echarts4r \
leaflet \
readxl \
janitor
# Install development packages from GitHub
RUN installGithub.r \
rstudio/bslib \
rstudio/httpuv
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|