Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FreddyHernandez
/
ph_media
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0de9fda
ph_media
/
Dockerfile
FreddyHernandez
Update Dockerfile
0de9fda
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
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)"
]