From 3057cb4004b137a49651229c440fa6a16ca3c44d Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 9 Nov 2025 23:08:58 +0530 Subject: [PATCH] Fix: Pin Python to 3.12-alpine to resolve build failure --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e4c7595d..a193c2713 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Install the base requirements for the app. # This stage is to support development. -FROM --platform=$BUILDPLATFORM python:alpine AS base +FROM --platform=$BUILDPLATFORM python:3.12-alpine AS base WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt