From 6c7ecdc9d9c68e8a78bfa858fb6144402dd21f23 Mon Sep 17 00:00:00 2001 From: "liam.li" Date: Tue, 8 Apr 2025 09:36:11 +0800 Subject: [PATCH] fix(Dockerfile): update base image to python:3.9-slim for better compatibility --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e4c759..f2de6cd 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.9-slim AS base WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt