Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

Commit

Permalink
Added README.md && Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed May 8, 2018
1 parent 262e9f8 commit 1623cc4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM php:7.2
LABEL author="William Desportes" \
author.email="[email protected]" \
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/)

0 comments on commit 1623cc4

Please sign in to comment.