Add Docker configuration and ignore files

This commit is contained in:
Feiko Wielsma 2026-03-25 12:50:55 +01:00
parent d976d12267
commit e9dfcdbca1
6 changed files with 318 additions and 30 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]