donor_dashboard2 / Dockerfile
ebader's picture
Add Dockerfile to run Streamlit app
01af9e6 verified
raw
history blame contribute delete
203 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["streamlit", "run", "streamlit_app.py", "--server.port", "8501", "--server.address", "0.0.0.0"]