Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tstone87
/
ccr-colorado
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
3bcd916
ccr-colorado
/
Dockerfile
tstone87
Create Dockerfile
2200d96
verified
3 months ago
raw
Copy download link
history
blame
Safe
129 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]