mirror of
https://github.com/MAGICGrants/campaign-site-docker-API.git
synced 2026-01-08 23:37:56 -05:00
14 lines
490 B
Docker
14 lines
490 B
Docker
FROM rstudio/plumber
|
|
LABEL author="Rucknium" \
|
|
maintainer="Rucknium"
|
|
|
|
RUN apt update && apt install -y libcurl4-openssl-dev cron
|
|
RUN R -e "install.packages(c('RCurl', 'RJSONIO', 'cronR'))"
|
|
|
|
COPY .env /root/.env
|
|
COPY R/plumber.R /root/plumber.R
|
|
COPY R/cache-fundingrequired.R /root/cache-fundingrequired.R
|
|
COPY R/fundingrequiredJSON.rds /root/fundingrequiredJSON.rds
|
|
|
|
ENTRYPOINT cron start && R -e "plumber::pr_run(plumber::plumb('plumber.R', '/root'), host = '0.0.0.0', port = 8000)"
|