Added git to docker setup

This commit is contained in:
SteamPixel 2020-01-14 11:39:36 +01:00
parent 8938651c4d
commit 96f49285bb
2 changed files with 12 additions and 0 deletions

View File

@ -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

View File

@ -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