Spaces:
Paused
Paused
| FROM python:3.11-slim | |
| RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| COPY brain.py /app/ | |
| EXPOSE 7860 | |
| HEALTHCHECK --interval=30s --timeout=10s CMD curl -sf http://localhost:7860/health || exit 1 | |
| CMD ["python3", "/app/brain.py"] | |