PitchPlotsInteractive / Dockerfile
TimStats's picture
Update Dockerfile
52fdbd9 verified
Raw
History Blame Contribute Delete
286 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
utils \
htmlwidgets
RUN installGithub.r \
davidgohel/ggiraph
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]