meteomat / Dockerfile
GitHub Actions
Deploy from GitHub Actions
c83e52f
Raw
History Blame Contribute Delete
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"]