Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Otolith
/
fish_cas
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
96e1661
fish_cas
/
Dockerfile
Otolith
Update Dockerfile
475cd60
verified
3 months ago
raw
Copy download link
history
blame
Safe
212 Bytes
FROM
rocker/r-base:latest
WORKDIR
/code
RUN
install2.r --error \
shiny \
dplyr \
sf \
stringr \
leaflet
COPY
. .
CMD
[
"R"
,
"--quiet"
,
"-e"
,
"shiny::runApp(host='0.0.0.0', port=7860)"
]