From b98faab9618eefd8f40cbb880742bbeb0dfe515b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=B7=E9=9B=A8?= Date: Sat, 29 Nov 2025 09:43:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:dockerfile=E5=A2=9E=E5=8A=A0sqlite3?= =?UTF-8?q?=E4=BE=9D=E8=B5=96?= 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 3b8c1a8..69405d2 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 openssl libssl-dev && 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 sqlite3 && 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"]