Files
2026-07-13 13:30:30 +08:00

11 lines
204 B
Docker

FROM python:3.13-slim
EXPOSE 8080
WORKDIR /app
COPY . ./
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8080", "--server.address=0.0.0.0"]