DefensiveApp / Dockerfile
igroffman's picture
Update Dockerfile
78834b2 verified
raw
history blame contribute delete
336 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
tidyr \
purrr \
stringr \
plotly \
DT \
gt \
gtExtras \
shinyWidgets \
fmsb \
scales \
tibble
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]