rtemisseq / Dockerfile
egenn's picture
up
17e03a6
raw
history blame contribute delete
424 Bytes
FROM rocker/shiny-verse:latest
WORKDIR /code
# Install CRAN packages
RUN install2.r --error \
shiny \
htmltools \
plotly \
bsicons \
sass \
shinyWidgets \
shinybusy \
listviewer
# Install GitHub packages
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)"]