TimMedia / Dockerfile
TimStats's picture
Update Dockerfile
70a2d19 verified
Raw
History Blame
282 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
shinyjs \
shinyauthr \
gt \
gtExtras \
bslib
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]