fmegahed's picture
Update Dockerfile to match the app's requirements and not the example from RStudio
e25d9a2 verified
raw
history blame
212 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
ellmer \
purrr \
readr \
dplyr
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]