2017-12-27 19:03:06 +00:00
|
|
|
FROM phpdockerio/php72-fpm:latest
|
2021-02-18 12:55:13 +00:00
|
|
|
WORKDIR "/var/www/app"
|
2017-12-27 19:03:06 +00:00
|
|
|
|
|
|
|
# Install selected extensions and other stuff
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get -y --no-install-recommends install php7.2-mysql \
|
|
|
|
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
|
|
|
|
|
|
|
|
# Install git
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get -y install git \
|
2021-02-18 12:55:13 +00:00
|
|
|
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
|