From 7ebf54c238ae41e323d20b0d51acc7c4572fa599 Mon Sep 17 00:00:00 2001 From: Mohamed moubarak Date: Sun, 7 Sep 2025 05:32:54 +0300 Subject: [PATCH] Use older Python version for HTMLMin to ensure build succeeds Modern python lacks CGI support --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e4c7595d..13d72292c 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.10-alpine AS base WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt