Working version

This commit is contained in:
2025-09-15 11:36:43 -04:00
parent 3d4afe7eab
commit 2003b9d115
10 changed files with 968 additions and 0 deletions

13
entrypoint.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
# Create data dir if missing (also persisted via volume)
mkdir -p /app/data
# Helpful debug: show versions
python --version
echo "Chromium: $(chromium --version || true)"
echo "Chromedriver: $(chromedriver --version || true)"
# Run your task
exec python /app/run.py