Spaces:
Sleeping
Sleeping
| FROM rocker/r-base:latest | |
| WORKDIR /code | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| libcurl4-openssl-dev \ | |
| libssl-dev \ | |
| libxml2-dev \ | |
| build-essential \ | |
| pkg-config \ | |
| ca-certificates && \ | |
| rm -rf /var/lib/apt/lists/* | |
| RUN install2.r --error --skipinstalled \ | |
| shiny \ | |
| dplyr \ | |
| ggplot2 \ | |
| readr \ | |
| ggExtra \ | |
| data.table \ | |
| ggsci \ | |
| cowplot \ | |
| egg \ | |
| Polychrome \ | |
| patchwork \ | |
| curl \ | |
| openssl \ | |
| httr2 \ | |
| DT \ | |
| shinythemes \ | |
| reshape2 | |
| COPY . . | |
| CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"] |