Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Wikki13
/
BioAge-Tool
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3da502d
BioAge-Tool
/
Dockerfile
Wikki13
Update Dockerfile
3da502d
verified
over 1 year ago
raw
Copy download link
history
blame
216 Bytes
FROM
rocker/r-base:latest
WORKDIR
/code
RUN
install2.r --error \
shiny \
dplyr \
ggplot2 \
readr \
ggExtra
COPY
. .
CMD
[
"R"
,
"--quiet"
,
"-e"
,
"shiny::runApp(host='0.0.0.0', port=7860)"
]