From 102401756b239eaebe95715ec1bcb1ba9cb25fe4 Mon Sep 17 00:00:00 2001 From: Kevin Porras Date: Tue, 10 Oct 2017 16:24:16 -0600 Subject: [PATCH 1/3] Add bcmath extension. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 40252f2..0a38290 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ RUN add-apt-repository ppa:ondrej/php && \ apt-get update && \ DEBIAN_FRONTEND="noninteractive" apt-get install --yes \ php-pear \ + php7.1-bcmath \ php7.1-cli \ php7.1-common \ php7.1-curl \ From 2763dedd301a0ef8316ef8f23f1eb9ef5aa1acee Mon Sep 17 00:00:00 2001 From: Kevin Porras Date: Thu, 3 Jan 2019 10:56:20 -0600 Subject: [PATCH 2/3] Add bz2 extension --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0a38290..962d396 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,6 +42,7 @@ RUN add-apt-repository ppa:ondrej/php && \ php7.1-tidy \ php7.1-xdebug \ php7.1-xml \ + php7.1-bz2 \ php7.1-zip # php7.1-xhprof From b69da0d07aad0eafd613da79b459c5677f89e2a7 Mon Sep 17 00:00:00 2001 From: Kevin Porras Date: Thu, 3 Jan 2019 15:55:15 -0600 Subject: [PATCH 3/3] Fix drush version to 8.1.17 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 962d396..0162c0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -80,7 +80,7 @@ RUN apt-get update && \ # Drush, console RUN cd /usr/local/bin/ && \ - curl http://files.drush.org/drush.phar -L -o drush && \ + curl https://github.com/drush-ops/drush/releases/download/8.1.17/drush.phar -L -o drush && \ chmod +x drush COPY ./conf/drush/drush-remote.sh /usr/local/bin/drush-remote RUN chmod +x /usr/local/bin/drush-remote