Spaces:
Runtime error
Runtime error
File size: 385 Bytes
a2b91d8 112fa67 daa0454 112fa67 a2b91d8 112fa67 daa0454 112fa67 daa0454 a2b91d8 112fa67 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
FROM rocker/shiny-verse:4.3.0
# Workaround for renv cache
RUN mkdir /.cache
RUN chmod 777 /.cache
WORKDIR /code
# Install renv
RUN install2.r --error \
renv
# Copy application code
COPY . .
# Install dependencies
RUN Rscript -e 'options(renv.config.cache.enabled = FALSE); renv::restore(prompt = FALSE)'
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|