From 48a491d7800c56e0918dd82986fd9f20b0685734 Mon Sep 17 00:00:00 2001 From: deploy-migration Date: Thu, 2 Jul 2026 16:18:31 +0000 Subject: [PATCH] install ffmpeg (needed by BOT/render_replay.py for match replay video generation) --- Dockerfile.bot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.bot b/Dockerfile.bot index c763cb4..eb45a8a 100644 --- a/Dockerfile.bot +++ b/Dockerfile.bot @@ -1,5 +1,5 @@ FROM ubuntu:24.04 -RUN apt-get update && apt-get install -y --no-install-recommends python3 ca-certificates && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends python3 ca-certificates ffmpeg && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY . . # Runs via the shared venv (mounted at /SHARED at deploy time) so compiled