glm_dists / Dockerfile
FreddyHernandez's picture
Update Dockerfile
261a2c7 verified
raw
history blame contribute delete
192 Bytes
FROM rocker/r-base:latest
WORKDIR /code
RUN install2.r --error \
shiny \
markdown \
ggplot2
COPY . .
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]