File size: 179 Bytes
a8722a6
 
 
 
 
 
fe3a155
a8722a6
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM rocker/r-base:latest

WORKDIR /code

RUN install2.r --error \
    shiny \
    markdown 
    
COPY . .

CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]