From eff6ae6f371bb5b041d578ecdae915bc9cf3cf87 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 09:00:30 +0000 Subject: [PATCH] Update Dockerfile to Python 3.10 for elementary-data 0.22+ compatibility elementary-data 0.22.0 dropped Python 3.9 support, causing pip install to fail inside the action's Docker container. Update base image from python:3.9.17 to python:3.10.17. Co-Authored-By: Itamar Hartstein --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eeb52fb..fa31cde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9.17 +FROM python:3.10.17 COPY requirements.txt /requirements.txt RUN pip install --no-cache-dir -r /requirements.txt