diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f867e89 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM php:5.6-apache + +WORKDIR /var/www/html + +RUN git clone git clone git@github.com:simplesamlphp/simplesamlphp.git simplesamlphp + +RUN cp -r config-templates/* config/ +RUN cp -r metadata-templates/* metadata/ +RUN php composer.phar install + +#COPY config/php.ini /usr/local/lib/ + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2ac8517 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +all: + docker build -t ianblenke/simplesamlphp .