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