diff --git a/centos7/Dockerfile b/centos7/Dockerfile index f0162e3..172726f 100644 --- a/centos7/Dockerfile +++ b/centos7/Dockerfile @@ -17,7 +17,7 @@ RUN cd ~ && \ wget -q https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz && \ tar -xzf sqlite-autoconf-3400100.tar.gz && \ cd sqlite-autoconf-3400100 && \ - ./configure --prefix=/usr && \ + CFLAGS="-DSQLITE_MAX_VARIABLE_NUMBER=500000" ./configure --prefix=/usr && \ make && \ make install && \ cd ~ && \ diff --git a/rocky8/Dockerfile b/rocky8/Dockerfile index 7f63100..7fc7771 100644 --- a/rocky8/Dockerfile +++ b/rocky8/Dockerfile @@ -18,7 +18,7 @@ RUN cd ~ && \ wget -q https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz && \ tar -xzf sqlite-autoconf-3400100.tar.gz && \ cd sqlite-autoconf-3400100 && \ - ./configure --prefix=/usr && \ + CFLAGS="-DSQLITE_MAX_VARIABLE_NUMBER=500000" ./configure --prefix=/usr && \ make && \ make install && \ cd ~ && \ diff --git a/ubuntu-20.04/Dockerfile b/ubuntu-20.04/Dockerfile index e5457ac..2207a4e 100644 --- a/ubuntu-20.04/Dockerfile +++ b/ubuntu-20.04/Dockerfile @@ -44,7 +44,7 @@ RUN cd ~ && \ wget -q https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz && \ tar -xzf sqlite-autoconf-3400100.tar.gz && \ cd sqlite-autoconf-3400100 && \ - ./configure --prefix=/usr && \ + CFLAGS="-DSQLITE_MAX_VARIABLE_NUMBER=500000" ./configure --prefix=/usr && \ make && \ make install && \ cd ~ && \ diff --git a/ubuntu-22.04/Dockerfile b/ubuntu-22.04/Dockerfile index aac0625..a9dee75 100644 --- a/ubuntu-22.04/Dockerfile +++ b/ubuntu-22.04/Dockerfile @@ -44,7 +44,7 @@ RUN cd ~ && \ wget -q https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz && \ tar -xzf sqlite-autoconf-3400100.tar.gz && \ cd sqlite-autoconf-3400100 && \ - ./configure --prefix=/usr && \ + CFLAGS="-DSQLITE_MAX_VARIABLE_NUMBER=500000" ./configure --prefix=/usr && \ make && \ make install && \ cd ~ && \