Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
muk42
/
histOSM
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
histOSM
/
Dockerfile
muk42
slim
3c13f2c
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
219 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
# Install pip dependencies
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY
. .
# Launch Gradio on HF Space
CMD
[
"python"
,
"app.py"
]