| |
| |
| |
| FROM python:3.11-slim |
|
|
| |
| LABEL maintainer="YourName" |
| LABEL description="G4F API Server - Free AI Chat" |
|
|
| |
| WORKDIR /app |
|
|
| |
| RUN apt-get update && \ |
| apt-get install -y --no-install-recommends curl && \ |
| apt-get clean && \ |
| rm -rf /var/lib/apt/lists/* |
|
|
| |
| COPY requirements.txt . |
|
|
| |
| RUN pip install --no-cache-dir --upgrade pip && \ |
| pip install --no-cache-dir -r requirements.txt |
|
|
| |
| COPY . . |
|
|
| |
| EXPOSE 7860 |
|
|
| |
| HEALTHCHECK --interval=30s --timeout=10s --retries=3 \ |
| CMD curl -f http://localhost:8080/health || exit 1 |
|
|
| |
| CMD ["python", "app.py"] |
|
|