From a0a0c7e1e2db3ff11a71e891936381b8f82b4c5e Mon Sep 17 00:00:00 2001 From: Deon George Date: Sun, 26 Jun 2022 11:42:56 +1000 Subject: [PATCH] Added bcmath and intl modules --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index e1219c1..57abbef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,6 +65,14 @@ RUN apt-get -y update \ && apt-get autoremove -y \ && rm -rf /var/lib/apt/lists/* /tmp/* +# Add bcmath +RUN apt-get -y update \ + && apt-get -y install build-essential libicu-dev \ + && docker-php-ext-install -j$(nproc) bcmath intl \ + && apt-get purge -y build-essential libicu-dev \ + && apt-get autoremove -y \ + && rm -rf /var/lib/apt/lists/* /tmp/* + COPY init /sbin/ RUN chmod 550 /sbin/init && chown 0:0 /sbin/init ENTRYPOINT [ "/sbin/init" ]