From 2759d347e64314cc8dd5d8e9e998f0815c7359f8 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sat, 8 Feb 2025 22:10:17 +0800 Subject: [PATCH] update: add socksio, echatpy, cryptography to dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 055d37bae..0b46d5d48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -RUN python -m pip install -r requirements.txt +RUN python -m pip install -r requirements.txt --no-cache-dir + +RUN python -m pip install socksio wechatpy cryptography --no-cache-dir EXPOSE 6185 EXPOSE 6186