Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pajuan
/
close
like
0
Runtime error
App
Files
Files
Community
f84a8de
close
/
Dockerfile
pajuan
Update Dockerfile
f84a8de
verified
28 days ago
raw
Copy download link
history
blame
Safe
230 Bytes
FROM
rocker/r-base:latest
WORKDIR
/code
RUN
install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra \
magrittr
COPY
. .
CMD
[
"R"
,
"--quiet"
,
"-e"
,
"shiny::runApp(host='0.0.0.0', port=7860)"
]