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 \