From 0935f78703e3f94508d818707354d05093f6ce6d Mon Sep 17 00:00:00 2001 From: Jason Jackson Date: Fri, 10 Jul 2026 10:53:06 -0400 Subject: [PATCH] chore(docker): bump base image from python:3.9-slim to python:3.12-slim Python 3.9 is EOL and can't satisfy newer selenium (>=4.37) or pytest (>=9.0) releases, which require Python >=3.10. This was blocking dependabot PRs #9 and #12. Verified locally: image builds and full test suite (103 passed, 1 skipped) runs clean on 3.12. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a73fd65..bdaadd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim +FROM python:3.12-slim # Install Chrome and dependencies RUN apt-get update && apt-get install -y \