From 3de31cfd628e05e7a7ef4292081ce57b8d4d2e49 Mon Sep 17 00:00:00 2001 From: Erin Allison Date: Sun, 20 Apr 2025 18:58:35 -0400 Subject: [PATCH] Add missing dependency to supervisor Containerfile Without the `docker` package being installed, the supervisor is unable to start runs when deployed on a Docker platform. Signed-off-by: Erin Allison --- apps/supervisor/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/supervisor/Containerfile b/apps/supervisor/Containerfile index d1a8e567ccc..67546192f50 100644 --- a/apps/supervisor/Containerfile +++ b/apps/supervisor/Containerfile @@ -9,7 +9,7 @@ RUN npx -q turbo@1.10.9 prune --scope=supervisor --docker FROM node-22-alpine AS base -RUN apk add --no-cache dumb-init +RUN apk add --no-cache dumb-init docker COPY --chown=node:node .gitignore .gitignore COPY --from=pruner --chown=node:node /app/out/json/ .