Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pmatorras
/
meteomat
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
meteomat
/
Dockerfile
GitHub Actions
Deploy from GitHub Actions
ce0e737
5 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
164 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. /app
RUN
pip install -e .
CMD
[
"streamlit"
,
"run"
,
"src/meteomat/app.py"
,
"--server.port=7860"
,
"--server.address=0.0.0.0"
]