From 3a055f8525ca9da4c221ba25d3bba3484b49d438 Mon Sep 17 00:00:00 2001 From: deploy-migration Date: Thu, 2 Jul 2026 16:18:43 +0000 Subject: [PATCH] install ffmpeg (needed by render_replay.py for match replay video generation) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cb6ecff..21bd2c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY . . RUN npm run build FROM ubuntu:24.04 -RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl gnupg python3 \ +RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl gnupg python3 ffmpeg \ && curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \ && apt-get install -y --no-install-recommends nodejs \ && rm -rf /var/lib/apt/lists/*