Spaces:
Sleeping
Sleeping
File size: 331 Bytes
74c7c55 c2a1e5b b15dfab 2b73487 b15dfab c2a1e5b 2b73487 b15dfab 74c7c55 2b73487 036f6e8 c2a1e5b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM rocker/geospatial:latest
WORKDIR /code
RUN install2.r --error \
bsicons \
bslib \
duckdbfs \
fontawesome \
gt \
markdown \
shiny \
shinychat \
tidyverse
RUN installGithub.r cboettig/mapgl tidyverse/ellmer
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|