# ============================================================================== # Author: Simon-Pierre Boucher # File: Dockerfile # Desc: Image de l'acteur Apify ka-tuxedo (Playwright + Python). # ============================================================================== FROM apify/actor-python-playwright:3.13 COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . ./ CMD ["python3", "-m", "src"]