Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
13ze
/
docker-cloud-storage
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d73947f
docker-cloud-storage
/
Dockerfile
13ze
Create Dockerfile
f2452ab
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
160 Bytes
FROM
python:
3.8
-slim
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]