🎈 feat: 更新 Dockerfile,添加 Node.js 支持并优化依赖安装

This commit is contained in:
Soulter
2025-03-29 16:36:02 +08:00
parent 69bd553ce0
commit 84a3e0a30b
2 changed files with 40 additions and 3 deletions
+5 -3
View File
@@ -9,12 +9,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
python3-dev \
libffi-dev \
libssl-dev \
ca-certificates \
bash \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN python -m pip install -r requirements.txt --no-cache-dir
RUN python -m pip install socksio wechatpy cryptography --no-cache-dir
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
EXPOSE 6185
EXPOSE 6186