From f289c83f1b0435eefd9c08b3d89280b64b4ed5f0 Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sat, 8 Mar 2025 14:49:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0SQLite=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E9=93=BE=E6=8E=A5=E4=BB=A5=E4=BD=BF=E7=94=A8=E6=9C=80?= =?UTF-8?q?=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c77c4bf..1a90b91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -76,12 +76,12 @@ RUN cd ~ && \ cd ~ && rm -rf curl-8.8.0 curl-8.8.0.tar.gz RUN cd ~ && \ - curl -L "https://www.sqlite.org/snapshot/sqlite-snapshot-202401231504.tar.gz" -o sqlite-snapshot-202401231504.tar.gz && \ - tar -xzvf sqlite-snapshot-202401231504.tar.gz && \ - cd sqlite-snapshot-202401231504 && \ + curl -L "https://www.sqlite.org/2025/sqlite-autoconf-3490100.tar.gz" -o sqlite-autoconf-3490100.tar.gz && \ + tar -xzvf sqlite-autoconf-3490100.tar.gz && \ + cd sqlite-autoconf-3490100 && \ ./configure --prefix=/clib --enable-shared --disable-static --disable-static-shell && \ make -j$(grep -c ^processor /proc/cpuinfo) && make install && \ - cd ~ && rm -rf sqlite-snapshot-202401231504 sqlite-snapshot-202401231504.tar.gz + cd ~ && rm -rf sqlite-autoconf-3490100 sqlite-autoconf-3490100.tar.gz RUN cd ~ && \ curl -L "https://libzip.org/download/libzip-1.10.1.tar.gz" -o libzip-1.10.1.tar.gz && \