We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1475b82 commit 3a8685eCopy full SHA for 3a8685e
php/Dockerfile.php-83
@@ -27,7 +27,7 @@ RUN wget https://www.sqlite.org/2025/$SQL_LITE_VERSION.tar.gz && \
27
28
# Build SQLite
29
WORKDIR $SQL_LITE_VERSION
30
-RUN ./configure && \
+RUN CFLAGS="-O2 -DSQLITE_ENABLE_COLUMN_METADATA=1" ./configure && \
31
make
32
33
FROM debian:bookworm
@@ -58,6 +58,8 @@ RUN sed -i '1i export PATH="$HOME/.config/composer/vendor/bin:$PATH"' /root/.bas
58
59
COPY --from=builder /tmp/$SQL_LITE_VERSION /tmp/$SQL_LITE_VERSION
60
RUN cd /tmp/$SQL_LITE_VERSION && make install && rm -rf /tmp/$SQL_LITE_VERSION
61
+# Hack to use the right version.
62
+RUN mv /usr/local/lib/libsqlite3.so /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
63
64
# sshd
65
RUN DEBIAN_FRONTEND=noninteractive apt-get autoclean
0 commit comments