Files

10 lines
225 B
Docker
Raw Permalink Normal View History

2025-06-26 00:48:28 +02:00
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["streamlit", "run", "crawler_gui.py", "--server.port=8501", "--server.enableCORS=false"]