FROM rocker/r-base:latest WORKDIR /app RUN install2.r --error \ shiny \ dplyr \ ggplot2 \ readr \ ggExtra \ remotes \ googlesheets4 RUN R -e "remotes::install_github('dayoonkwon/BioAge')" COPY app.R . EXPOSE 7860 CMD ["R", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]