| FROM python:3.11-slim | |
| RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* | |
| COPY requirements.txt /requirements.txt | |
| RUN pip3 install --no-cache-dir -r /requirements.txt | |
| COPY brain.py /brain.py | |
| COPY templates/ /templates/ | |
| EXPOSE 7860 | |
| CMD ["python3", "/brain.py"] | |