From 8b9d22a74b9c8f527731124f40c4da35ecf989b8 Mon Sep 17 00:00:00 2001 From: Teknium Date: Sun, 12 Apr 2026 00:46:01 -0700 Subject: [PATCH] revert: keep debian:13.4 full image instead of slim The slim image drops packages that may be needed at runtime. Keep the full Debian base for compatibility. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6934bb7c3..4935d222a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ghcr.io/astral-sh/uv:0.11.6-python3.13-trixie@sha256:b3c543b6c4f23a5f2df22866bd7857e5d304b67a564f4feab6ac22044dde719b AS uv_source FROM tianon/gosu:1.19-trixie@sha256:3b176695959c71e123eb390d427efc665eeb561b1540e82679c15e992006b8b9 AS gosu_source -FROM debian:13.4-slim +FROM debian:13.4 # Disable Python stdout buffering to ensure logs are printed immediately ENV PYTHONUNBUFFERED=1