|
FROM rocker/shiny-verse:4.3.1 |
|
RUN apt-get update && apt-get install -y libbz2-dev |
|
|
|
|
|
RUN mkdir /.cache |
|
RUN chmod 777 /.cache |
|
|
|
WORKDIR /code |
|
|
|
|
|
|
|
RUN install2.r --error \ |
|
BiocManager |
|
CMD ["R", "--quiet", "-e", "BiocManager::install("cBioPortalData")"] |
|
|
|
RUN install2.r --error \ |
|
shiny \ |
|
DT \ |
|
rhino \ |
|
data.table \ |
|
gargoyle \ |
|
thematic \ |
|
shinyWidgets \ |
|
stats \ |
|
plotly \ |
|
shinyjs |
|
|
|
|
|
RUN installGithub.r \ |
|
rstudio/bslib \ |
|
rstudio/httpuv \ |
|
RinteRface/bs4Dash \ |
|
vojtam/g3viz |
|
|
|
COPY . . |
|
|
|
|
|
COPY . . |
|
|
|
|
|
|
|
|
|
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"] |
|
|