Explorar el Código

fix: add ffmpeg

Yeuoly hace 5 meses
padre
commit
c553ccdda2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docker/local.dockerfile

+ 1 - 1
docker/local.dockerfile

@@ -33,7 +33,7 @@ WORKDIR /app
 ARG PLATFORM=local
 
 # Install python3.12 if PLATFORM is local
-RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3.12 python3.12-venv python3.12-dev \
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3.12 python3.12-venv python3.12-dev ffmpeg \
     && apt-get clean \
     && rm -rf /var/lib/apt/lists/* \
     && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1;