From c537a5fdd58f35f4fe108a3f2e24c0efe1d3a0f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=B7=E9=9B=A8?= Date: Mon, 29 Sep 2025 15:02:08 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E5=A2=9E=E5=8A=A0ssl=E9=A9=B1?= =?UTF-8?q?=E5=8A=A8=EF=BC=8C=E8=BE=BE=E6=A2=A6=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E8=BF=9E=E6=8E=A5=E9=9C=80=E8=A6=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0ab5d59..3b8c1a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY . /app ENV TZ=Asia/Shanghai \ LANG=C.UTF-8 -RUN rm -rf logs .git .idea .venv && apt-get update && apt-get install -y vim curl && pip install -r requirement.txt -i https://mirrors.aliyun.com/pypi/simple/ +RUN rm -rf logs .git .idea .venv && apt-get update && apt-get install -y vim curl openssl libssl-dev && pip install -r requirement.txt -i https://mirrors.aliyun.com/pypi/simple/ RUN mkdir -p /app/logs && touch /app/logs/sqlbot.log && rm -rf *.whl EXPOSE 8084 CMD ["python","main_service.py"]