diff options
author | jef.cahri <jf.magnier@gmail.com> | 2015-04-30 17:10:54 +0400 |
---|---|---|
committer | jef.cahri <jf.magnier@gmail.com> | 2015-04-30 17:10:54 +0400 |
commit | 21dfe78e8fdd88dd88445689e6e23b1319e0dc24 (patch) | |
tree | ba880721d186407eebd10beb167169b5992aabe9 | |
parent | fa5aaa60934223f74c9b9c32e7599f53c72a81fd (diff) |
Docker file, test pour ajouter php5-gd
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ FROM ubuntu:14.04 MAINTAINER Frederic Guillot <fred@kanboard.net> -RUN apt-get update && apt-get install -y apache2 php5 php5-sqlite git curl && apt-get clean +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/fguillot/kanboard.git +RUN cd /var/www && git clone https://github.com/lefakir/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 |