From 691c8491097b71d30ef8dea4d2c6a968338c86b0 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 15 Feb 2026 03:42:30 +0100 Subject: [PATCH] feat: switch container base to python:3.13-alpine Reduces image size from 157 MB to 61 MB. All dependencies (maxminddb) have pre-built musl wheels, no build toolchain needed. Co-Authored-By: Claude Opus 4.6 --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index e362a00..ce7f44e 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM python:3.13-slim +FROM python:3.13-alpine WORKDIR /app