File size: 444 Bytes
e4fe5be 14f70e6 e4fe5be 14f70e6 71111cd 14f70e6 e4fe5be | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:3.11-slim
# Install system tools for research and web browsing
RUN apt-get update && apt-get install -y \
git curl nodejs npm ffmpeg libsm6 libxext6 r-base \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Install browsers for the researcher agent
RUN playwright install-deps && playwright install chromium
CMD ["python", "app.py"] |