Saklehir's picture
Update Dockerfile
066a08e verified
raw
history blame contribute delete
331 Bytes
FROM rocker/tidyverse:latest
WORKDIR /code
RUN apt-get update && apt-get install -y \
libmagick++-dev \
&& rm -rf /var/lib/apt/lists/*
RUN install2.r --error --deps TRUE \
googlesheets4 bslib plotly \
htmlwidgets magick \
base64enc
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]