Specify an explicit Composer version (#5589)

... to not rely on a possibly outdated local image.
This commit is contained in:
Matthias Pigulla 2021-02-17 12:12:53 +01:00 committed by GitHub
parent 1d0feb11ee
commit 242c6371d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y \
&& docker-php-ext-configure intl \
&& docker-php-ext-install intl
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
COPY --from=composer:2.0.9 /usr/bin/composer /usr/bin/composer
ENV COMPOSER_ALLOW_SUPERUSER=1 COMPOSER_MEMORY_LIMIT=-1