From 0aa0739babe9b8fe946b6971cbc9cfa599e699c8 Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Sun, 25 Oct 2020 01:46:50 -0400 Subject: [PATCH] Pin to Composer 1.10.16 Signed-off-by: Andrew Welch --- php-dev-craft/mariadb/Dockerfile | 2 +- php-dev-craft/postgres/Dockerfile | 2 +- php-prod-craft/mariadb/Dockerfile | 2 +- php-prod-craft/postgres/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/php-dev-craft/mariadb/Dockerfile b/php-dev-craft/mariadb/Dockerfile index c5555a1..0e652fa 100755 --- a/php-dev-craft/mariadb/Dockerfile +++ b/php-dev-craft/mariadb/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update \ pdo_mysql \ && \ # Install Composer - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer \ + curl -sS https://getcomposer.org/installer | php -- --version=1.10.16 --install-dir=/usr/local/bin/ --filename=composer \ # Clean apt repo caches that don't need to be part of the image && \ apt-get clean \ diff --git a/php-dev-craft/postgres/Dockerfile b/php-dev-craft/postgres/Dockerfile index 0c1b19e..1eddcae 100755 --- a/php-dev-craft/postgres/Dockerfile +++ b/php-dev-craft/postgres/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update \ pgsql \ && \ # Install Composer - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer \ + curl -sS https://getcomposer.org/installer | php -- --version=1.10.16 --install-dir=/usr/local/bin/ --filename=composer \ # Clean apt repo caches that don't need to be part of the image && \ apt-get clean \ diff --git a/php-prod-craft/mariadb/Dockerfile b/php-prod-craft/mariadb/Dockerfile index 2a186e8..6131359 100755 --- a/php-prod-craft/mariadb/Dockerfile +++ b/php-prod-craft/mariadb/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update \ pdo_mysql \ && \ # Install Composer - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer \ + curl -sS https://getcomposer.org/installer | php -- --version=1.10.16 --install-dir=/usr/local/bin/ --filename=composer \ # Clean apt repo caches that don't need to be part of the image && \ apt-get clean \ diff --git a/php-prod-craft/postgres/Dockerfile b/php-prod-craft/postgres/Dockerfile index 3f55e37..69d8541 100755 --- a/php-prod-craft/postgres/Dockerfile +++ b/php-prod-craft/postgres/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update \ pgsql \ && \ # Install Composer - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer \ + curl -sS https://getcomposer.org/installer | php -- --version=1.10.16 --install-dir=/usr/local/bin/ --filename=composer \ # Clean apt repo caches that don't need to be part of the image && \ apt-get clean \