avephill's picture
Update Dockerfile
8f5d9c7 verified
raw
history blame contribute delete
542 Bytes
FROM rocker/shiny-verse:latest
WORKDIR /code
RUN /rocker_scripts/install_geospatial.sh
RUN install2.r --error \
shiny \
shinyjs \
shinyWidgets \
shinybusy \
DBI \
duckdb \
dplyr \
dbplyr \
sf \
leaflet \
ggplot2 \
patchwork \
purrr \
leafsync \
tidyr \
stringr \
plotly \
readr \
ggExtra \
mapgl \
terra \
RColorBrewer \
shinycssloaders \
scales \
duckdbfs
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]