Browse Source

Allow users to add php.ini files to /usr/local/lib/php/ without rebuilding the image (#27)

Alex Rock 2 years ago
parent
commit
7460cbdb7c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Dockerfile

+ 2 - 1
Dockerfile

@@ -36,7 +36,8 @@ RUN git clone --depth=1 --single-branch --branch=frankenphp-8.2 https://github.c
     ./configure \
         --enable-embed=static \
         --enable-zts \
-        --disable-zend-signals && \
+        --disable-zend-signals \
+        --with-config-file-scan-dir=/usr/local/lib/php/ && \
     make -j$(nproc) && \
     make install && \
     rm -Rf php-src/ && \