File size: 270 Bytes
d2a976d |
1 2 3 4 5 6 7 8 9 10 11 |
# Use a minimal base image with Python 3.9
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
# Run Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
|