From 34ee91a66e8919eec6445dc6a644ae9222a4eb92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E9=91=AB?= Date: Tue, 16 Dec 2025 14:32:10 +0800 Subject: [PATCH] Update Dockerfile to use custom Python 3.10.5 image instead of Python 3.11 slim base --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b55f24d..96dac5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use Python 3.11 slim image as base -FROM python:3.11-slim +FROM 172.16.102.3:30648/python:3.10.5 # Set working directory WORKDIR /app