feat: add tini to base image
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/manual/woodpecker Pipeline was successful

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!
This commit is contained in:
Ehsan.Asadi
2025-12-30 22:17:13 +03:30
parent 7c1b8b90ba
commit 826447e9a2

View File

@@ -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