Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Eaz123
/
tool1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
tool1
/
Dockerfile
Eaz123
Create Dockerfile
0701a87
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
134 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]