Added composer to Docker setup
This commit is contained in:
parent
545d321e0d
commit
db0634413e
|
@ -1,3 +1,10 @@
|
|||
FROM php:7.2-apache
|
||||
|
||||
# Enable rewrite
|
||||
RUN a2enmod rewrite
|
||||
|
||||
# Install composer
|
||||
# https://www.hostinger.com/tutorials/how-to-install-composer
|
||||
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
||||
RUN php composer-setup.php --install-dir=/usr/local/bin --filename=composer
|
||||
RUN php -r "unlink('composer-setup.php');"
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
FROM php:7.4.1-apache
|
||||
|
||||
RUN a2enmod rewrite
|
||||
|
||||
# Install composer
|
||||
# https://www.hostinger.com/tutorials/how-to-install-composer
|
||||
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
||||
RUN php composer-setup.php --install-dir=/usr/local/bin --filename=composer
|
||||
RUN php -r "unlink('composer-setup.php');"
|
||||
|
|
Loading…
Reference in New Issue
Block a user