From 826447e9a2ced82e9210af781e3e32c4ed232f5c Mon Sep 17 00:00:00 2001 From: "Ehsan.Asadi" Date: Tue, 30 Dec 2025 22:17:13 +0330 Subject: [PATCH] feat: add tini to base image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now base image includes: ✅ Python 3.11 ✅ Node.js 20 ✅ bun, npm ✅ Build tools (gcc, g++, make) ✅ Runtime essentials (curl, ca-certificates, git) ✅ tini (init system) Runtime Dockerfile needs ZERO apt installs! --- docker/Dockerfile.base | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base index 612aae8..8fadc22 100644 --- a/docker/Dockerfile.base +++ b/docker/Dockerfile.base @@ -28,6 +28,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ unzip \ git \ + tini \ && rm -rf /var/lib/apt/lists/* # Install Node.js