From 9ec4ae9d2edaf755e8fe55af96c64daa2e5696eb Mon Sep 17 00:00:00 2001 From: geicht Date: Wed, 1 Oct 2025 18:16:36 +0200 Subject: [PATCH] add tini --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c4319f71..cdb80a79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,6 +54,7 @@ COPY --from=ffmpeg-builder ./ffprobe/ffprobe /usr/bin/ffprobe RUN apt-get clean && apt-get -y update && apt-get -y install --no-install-recommends \ nginx \ atomicparsley \ + tini \ curl && rm -rf /var/lib/apt/lists/* # install debug tools for testing environment @@ -88,4 +89,4 @@ EXPOSE 8000 RUN chmod +x ./run.sh -CMD ["./run.sh"] +CMD ["/bin/tini", "--", "./run.sh"]