diff options
author | jef.cahri <jf.magnier@gmail.com> | 2015-04-30 17:28:23 +0400 |
---|---|---|
committer | jef.cahri <jf.magnier@gmail.com> | 2015-04-30 17:28:23 +0400 |
commit | 10687bc9f070ee2768e47e0f16269520eaae1513 (patch) | |
tree | 2bba055e74ece6e8ffad183b903a624fcc69dd09 | |
parent | 21dfe78e8fdd88dd88445689e6e23b1319e0dc24 (diff) |
Dockerfile adapted to include php5-gd package
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ MAINTAINER Frederic Guillot <fred@kanboard.net> RUN apt-get update && apt-get install -y apache2 php5 php5-gd php5-sqlite git curl && apt-get clean RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf RUN curl -sS https://getcomposer.org/installer | php -- --filename=/usr/local/bin/composer -RUN cd /var/www && git clone https://github.com/lefakir/kanboard.git +RUN cd /var/www && git clone https://github.com/fguillot/kanboard.git RUN cd /var/www/kanboard && composer install RUN rm -rf /var/www/html && mv /var/www/kanboard /var/www/html RUN chown -R www-data:www-data /var/www/html/data |