diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a7463a1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM php:7.2 +LABEL author="William Desportes" \ + author.email="williamdes@wdes.fr" \ + author.website="https://william.wdes.fr" \ + vcs-url="https://github.com/williamdes/docker-web" + +RUN apt-get update && \ +apt-get install git imagemagick inkscape -y \ +&& apt-get autoremove -y + +RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..fe2f413 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Docker web + +Uses as base image : `php:7.2` + +## Includes +- [ImageMagick](https://www.imagemagick.org/) +- [PHP 7.2](http://www.php.net/ChangeLog-7.php) +- [Inkscape](https://inkscape.org/) +- [Git](https://git-scm.com/) +- [Composer](https://getcomposer.org/) \ No newline at end of file