Dockerfile Example
Containerizing R Shiny App
FROM rocker/shiny:4.5.0
RUN apt-get update && apt-get install -y \
libcurl4-openssl-dev libssl-dev
RUN R -e "install.packages(c('shiny', 'arrow', 'leaflet'))"
COPY app/ /srv/shiny-server/
EXPOSE 3838
CMD ["/start.sh"]