Spaces:
Runtime error
Runtime error
FROM rocker/shiny-verse:latest | |
WORKDIR /code | |
# Install stable packages from CRAN | |
RUN install2.r --error \ | |
shiny \ | |
bslib \ | |
httpuv \ | |
purrr \ | |
glue \ | |
httr2 | |
COPY . . | |
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"] | |