From 7680b0eb91efac6efd2b10a5dc4e8022c91c0ce5 Mon Sep 17 00:00:00 2001 From: Ami Date: Tue, 21 Apr 2026 10:49:59 +0700 Subject: [PATCH] fix: install supervisord in runtime stage (closes deploy) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28911a2..ab050db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ FROM python:3.12-slim WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends \ - libpq5 curl tini \ + libpq5 curl tini supervisord \ && rm -rf /var/lib/apt/lists/* \ && apt-get clean