| FROM python:3.11 | |
| RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| COPY . . | |
| RUN chmod -R 777 /app | |
| RUN pip install --no-cache-dir requests Flask aiohttp_wsgi huggingface_hub python-dotenv python-socketio aiohttp | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] |