Merge pull request #1046 from AstrBotDevs/feat-docker-embedded-ffmpeg

docker 镜像提供内置 ffmpeg
This commit is contained in:
Soulter
2025-03-29 17:53:40 +08:00
committed by GitHub
+7 -1
View File
@@ -16,7 +16,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN python -m pip install uv
RUN uv pip install -r requirements.txt --no-cache-dir --system
RUN uv pip install socksio uv pyffmpeg --no-cache-dir --system
RUN uv pip install socksio uv pyffmpeg pilk --no-cache-dir --system
# 释出 ffmpeg
RUN python -c "from pyffmpeg import FFmpeg; ff = FFmpeg();"
# add /root/.pyffmpeg/bin/ffmpeg to PATH, inorder to use ffmpeg
RUN echo 'export PATH=$PATH:/root/.pyffmpeg/bin' >> ~/.bashrc
EXPOSE 6185
EXPOSE 6186