Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
win2win
/
Classifier-Docker
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4d66bcb
Classifier-Docker
/
dockerfile
win2win
Create dockerfile
45f530a
verified
about 1 year ago
raw
Copy download link
history
blame
133 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
8000
CMD
[
"python"
,
"app.py"
]