Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kamau1
/
Seamore
like
0
Running
App
Files
Files
Community
d25b221
Seamore
/
Dockerfile
kamau1
Upload folder using huggingface_hub
b454b86
about 1 year ago
raw
Copy download link
history
blame
Safe
182 Bytes
FROM
python:3.7
RUN
apt-
get
update \
&& apt-
get
install ffmpeg libsm6 libxext6 -y
RUN
pip install yolov5 tator gradio
COPY . ./
CMD [
"python"
,
"-u"
,
"./tator_inference.py"
]