From 0bcbaa380a05c2a884c0d86d63fbc4626037c8c5 Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Thu, 17 Apr 2025 15:12:32 -0800 Subject: [PATCH] Bump Python version for Worker's Dockerfile (#365) [build-and-publish](https://github.com/ArcadeAI/arcade-ai/actions/runs/14522118587/job/40745392086) is failing to build the Worker container because the arcade-stripe toolkit requires Python >=3.11. The arcade-stripe toolkit has a dependency that requires >=3.11, so we can't loosen the toolkit's requirement. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index b2c8f068..c8e9614f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.11-slim # Define build arguments with default values ARG PORT=8001