Dockerfile: install ffmpeg

This commit is contained in:
norohind 2023-08-10 00:11:49 +03:00
parent d6d416cd1a
commit 155df0d9f3
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1

View File

@ -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