Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
shashwatIDR
/
bot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d56de30
bot
/
Dockerfile
shashwatIDR
Update Dockerfile
935d3e7
verified
28 days ago
raw
Copy download link
history
blame
Safe
166 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]