Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Neon-tech
/
Dataset
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Dataset
/
Dockerfile
Neon-tech
Update Dockerfile
83beb12
verified
7 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
165 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]