diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-03 22:00:14 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-03 22:00:14 -0500 |
commit | 0ccf6c8bc20656921f31582a0b5b329264dd6813 (patch) | |
tree | 1506418a2dcf9d268bd82b366333e45c1608d4b2 | |
parent | 9fb2e711899ae328a7a09295468793ffbc16c27c (diff) | |
parent | d3d0e768d2b9cda2e15683c8f6c41dd0bf84a066 (diff) |
Merge branch 'master' of https://github.com/fguillot/kanboard
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,9 +1,11 @@ FROM ubuntu:14.04 MAINTAINER Frederic Guillot <fred@kanboard.net> -RUN apt-get update && apt-get install -y apache2 php5 php5-sqlite git && apt-get clean +RUN apt-get update && apt-get install -y apache2 php5 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/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 |