summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjef.cahri <jf.magnier@gmail.com>2015-04-30 17:28:23 +0400
committerjef.cahri <jf.magnier@gmail.com>2015-04-30 17:28:23 +0400
commit10687bc9f070ee2768e47e0f16269520eaae1513 (patch)
tree2bba055e74ece6e8ffad183b903a624fcc69dd09
parent21dfe78e8fdd88dd88445689e6e23b1319e0dc24 (diff)
Dockerfile adapted to include php5-gd package
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 152f32fe..c278fb6c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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