Correlation_Fashion / Dockerfile
michelerussoAA's picture
Update Dockerfile
3c01cfc verified
raw
history blame contribute delete
328 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
shinythemes \
plotly
# Install development packages from GitHub
RUN installGithub.r \
rstudio/bslib \
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]