Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yangtb24
/
Monitor
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Monitor
/
Dockerfile
yangtb24
Rename Dockfile to Dockerfile
9b148e9
verified
26 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
173 Bytes
FROM
python:
3.9
-slim-buster
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
CMD
[
"python"
,
"app.py"
]