Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sreepathi-ravikumar
/
sample
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d7977d4
sample
/
Dockerfile
sreepathi-ravikumar
Create Dockerfile
d7977d4
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
app.py .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]