From 155df0d9f3e416fba627ffe3b827efe6e91934c7 Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Thu, 10 Aug 2023 00:11:49 +0300 Subject: [PATCH] Dockerfile: install ffmpeg --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0408b87..07727d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,8 @@ FROM python:3.11-slim ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 -RUN useradd -ms /bin/bash silero_user +RUN useradd -ms /bin/bash silero_user && \ + apt update && apt install ffmpeg -y --no-install-recommends && apt clean && rm -rf /var/lib/apt/lists/* \ USER silero_user WORKDIR /app