rufimelo's picture
Add Dockerfile
da37d7b verified
raw
history blame contribute delete
202 Bytes
FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir "streamlit>=1.32.0"
COPY app.py app.py
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]