Explorar el Código

build: 添加 ffmpeg 依赖到 Dockerfile.backend

为了支持后端服务中的音视频处理功能,需要在容器环境中安装 ffmpeg
DengPeng hace 2 semanas
padre
commit
63f855cdc5
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Dockerfile.backend

+ 1 - 0
Dockerfile.backend

@@ -22,6 +22,7 @@ RUN rm -f /etc/apt/sources.list.d/*.list /etc/apt/sources.list.d/*.sources && \
     curl \
     git \
     wget \
+    ffmpeg \
     && rm -rf /var/lib/apt/lists/*
 
 RUN pip install --no-cache-dir --upgrade pip setuptools wheel