Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TheNano-AI
/
Nano-AI
like
2
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
main
Nano-AI
/
Dockerfile
Lobi-Gmbh
Nano-AI 1.0 Beta
359e550
verified
10 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
186 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt --
timeout
=1000 --retries=5
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]