FROM mcr.microsoft.com/playwright/python:v1.40.0-jammy WORKDIR /app COPY . . RUN pip install --no-cache-dir -r requirements.txt # Hugging Face को पोर्ट 7860 की ज़रूरत होती है ENV PORT=7860 EXPOSE 7860 CMD ["python", "main.py"]