12 lines
264 B
Docker
12 lines
264 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
# Install dependencies required for ingestion and DB
|
|
RUN pip install streamlit pandas requests python-dotenv
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|