From e2fd771f61e1351de9bbbcaf67148ab782d3a17c Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 31 Oct 2023 16:33:59 +0100 Subject: [PATCH] Reorder --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51fc716..2e7c701 100755 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,8 @@ ENV CXX=clang++-16 ENV LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/usr/lib/llvm-16/lib/clang/16/lib/linux/" +ADD php.ini /etc/php/php.ini + RUN true \ && apt update \ && apt install -y --no-install-recommends \ @@ -57,8 +59,6 @@ RUN git clone https://github.com/php/php-src -b master --depth 1 && cd php-src \ && make -j100 \ && make install && echo owo -ADD php.ini /etc/php/php.ini - RUN php -r "readfile('https://getcomposer.org/installer');" | php \ && mv composer.phar /usr/bin/composer