From 21dfe78e8fdd88dd88445689e6e23b1319e0dc24 Mon Sep 17 00:00:00 2001 From: "jef.cahri" Date: Thu, 30 Apr 2015 17:10:54 +0400 Subject: Docker file, test pour ajouter php5-gd --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 96b34c88..152f32fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM ubuntu:14.04 MAINTAINER Frederic Guillot -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 -- cgit v1.2.3 From 10687bc9f070ee2768e47e0f16269520eaae1513 Mon Sep 17 00:00:00 2001 From: "jef.cahri" Date: Thu, 30 Apr 2015 17:28:23 +0400 Subject: Dockerfile adapted to include php5-gd package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 152f32fe..c278fb6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Frederic Guillot 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 -- cgit v1.2.3