#!/bin/bash # Install system dependencies echo "Installing system dependencies..." apt-get update && apt-get install -y \ wget \ gnupg \ xvfb \ libxi6 \ libgconf-2-4 \ libxss1 \ libnss3 \ libnspr4 \ libasound2 \ libatk1.0-0 \ libatk-bridge2.0-0 \ libcups2 \ libgbm1 \ libxcomposite1 \ libxdamage1 \ libxfixes3 \ libxrandr2 \ libatspi2.0-0 # Run the browser installation script echo "Installing Playwright browsers..." python download_browsers.py echo "Setup complete!"