change default style back to light
[openemr.git] / contrib / util / docker / stuff / dockers / dev-php-fpm-7-1 / Dockerfile
blob7beaede1f710f36bbe0056b0da34e821f16eb011
2 # Copyright (C) 2018 Brady Miller <brady.g.miller@gmail.com>
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # php-fpm Dockerfile build for openemr development docker environment
10 # This docker is hosted here: https://hub.docker.com/r/openemr/dev-php-fpm/ <tag is 7.1>
12 FROM php:7.1-fpm
14 # Update
15 RUN apt-get update
17 # Add mysql-client package that is needed in the OpenEMR Backup gui, which does direct command mysql commands
18 # Add imagemagick that is needed for some image processing in OpenEMR
19 # Note this basically add 160MB of space to the docker, so would be nice for OpenEMR to not require this stuff
20 #  and instead rely on php scripts, if possible.
21 RUN apt-get install -y mysql-client \
22                        imagemagick
24 # Add the php extensions (note using a very cool script by mlocati to do this)
25 ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/
26 RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \
27     install-php-extensions pdo_mysql \
28                            ldap \
29                            xsl \
30                            gd \
31                            zip \
32                            soap \
33                            gettext \
34                            mysqli \
35                            sockets \
36                            tokenizer \
37                            xmlreader