Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
victor
/
caca23232
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
caca23232
/
Dockerfile
victor
HF Staff
test: bucket persistence with Docker Space
d687ef6
19 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
108 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
app.py .
RUN
pip install flask
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]