Spaces:
Sleeping
Sleeping
File size: 403 Bytes
639cb71 0f85f1c 639cb71 133e140 639cb71 29b08d0 639cb71 554bf1a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
FROM rocker/geospatial:latest
WORKDIR /code
RUN install2.r --error \
bench \
bsicons \
bslib \
duckdbfs \
fontawesome \
gt \
markdown \
shiny \
shinybusy \
tidyverse \
colourpicker
RUN installGithub.r cboettig/mapgl tidyverse/ellmer cboettig/duckdbfs boettiger-lab/overture
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=8080)"]
|