File size: 546 Bytes
9656f90 8152d1c 9656f90 8152d1c 9656f90 aad6236 b3ca32d 3a72313 8152d1c 9656f90 8152d1c 9656f90 8152d1c 9656f90 | 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 28 29 30 31 32 33 34 | FROM rocker/shiny-verse:latest
WORKDIR /code
# Install stable packages from CRAN
RUN install2.r --error \
ggExtra \
shiny \
shinydashboard \
shinyWidgets \
baseballr \
plotly \
DT \
dplyr \
ggplot2 \
xgboost \
httr \
rsconnect \
MASS \
viridis \
patchwork \
jsonlite \
arrow \
remotes
# 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)"]
|