Added git to docker setup
This commit is contained in:
parent
8938651c4d
commit
96f49285bb
|
@ -8,3 +8,9 @@ RUN a2enmod rewrite
|
|||
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');"
|
||||
|
||||
# Update
|
||||
RUN apt-get update -y
|
||||
|
||||
# Install git
|
||||
RUN apt-get install git -y
|
||||
|
|
|
@ -7,3 +7,9 @@ RUN a2enmod rewrite
|
|||
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');"
|
||||
|
||||
# Update
|
||||
RUN apt-get update -y
|
||||
|
||||
# Install git
|
||||
RUN apt-get install git -y
|
||||
|
|
Loading…
Reference in New Issue
Block a user