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