Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ricebug
/
nba
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
nba
/
Dockerfile
ricebug
Update Dockerfile
6d6d447
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
162 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]