瀏覽代碼

build: 添加 ffmpeg 依赖到 Dockerfile.backend

为了支持后端服务中的音视频处理功能,需要在容器环境中安装 ffmpeg
DengPeng 2 周之前
父節點
當前提交
63f855cdc5
共有 1 個文件被更改,包括 1 次插入0 次删除
  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