ITAO40570 / Dockerfile
cccfran's picture
Duplicate from posit/shiny-for-r-template
efa0e13 verified
raw
history blame contribute delete
215 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]