Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jrno
/
song-recommender
like
0
Sleeping
App
Files
Files
Community
f6b6982
song-recommender
/
Dockerfile
jrno
Add dockerfile
f6b6982
7 months ago
raw
Copy download link
history
blame
Safe
109 Bytes
FROM
python:
3.10
.
9
-slim
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"python"
,
"server.py"
]