rtemisxt / Dockerfile
egenn's picture
added shinyWidgets
fea540e
raw
history blame
435 Bytes
FROM rocker/shiny-verse:latest
WORKDIR /code
# Install stable packages from CRAN
RUN install2.r --error \
shiny \
htmltools \
plotly \
bsicons \
sass \
shinyWidgets \
shinybusy
# Install development packages from GitHub
RUN installGithub.r \
rstudio/bslib \
rstudio/httpuv \
egenn/rtemis \
egenn/rtemisbio
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]