Merge pull request #3029 from Strubbl/docker-apache-update-debian-and-composer

docker-apache: update Debian to Bullseye and composer to 2.1.14
This commit is contained in:
daniel 2021-12-18 19:30:44 -07:00 committed by GitHub
commit a65c6e2183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
FROM php:7.4-apache-buster
FROM php:7.4-apache-bullseye
# Use the default production configuration
COPY contrib/docker/php.production.ini "$PHP_INI_DIR/php.ini"
# Install Composer
ENV COMPOSER_VERSION=1.10.11 \
ENV COMPOSER_VERSION=2.1.14 \
COMPOSER_HOME=/var/www/.composer \
COMPOSER_MEMORY_LIMIT=-1 \
PATH="~/.composer/vendor/bin:./vendor/bin:${PATH}"