Add docker artifacts and agent context

This commit is contained in:
2025-12-27 16:43:24 -08:00
parent b3f4580faf
commit 690887a6ec
5 changed files with 745 additions and 54 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM mcr.microsoft.com/playwright/python:v1.50.0-jammy
WORKDIR /app
ENV PYTHONUNBUFFERED=1
COPY scraper_service.py /app/scraper_service.py
RUN python -m pip install --no-cache-dir flask beautifulsoup4
EXPOSE 9777
CMD ["python", "scraper_service.py"]