| FROM python:3.12-slim | |
| WORKDIR /app | |
| COPY . . | |
| RUN python -m pip install --upgrade pip | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| RUN playwright install chromium | |
| EXPOSE 5000 | |
| CMD ["python", "main.py"] |
| FROM python:3.12-slim | |
| WORKDIR /app | |
| COPY . . | |
| RUN python -m pip install --upgrade pip | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| RUN playwright install chromium | |
| EXPOSE 5000 | |
| CMD ["python", "main.py"] |