We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 593c91c + c1fbc8c commit 4754b72Copy full SHA for 4754b72
Dockerfile
@@ -4,6 +4,12 @@ RUN apt-get update && apt-get install -y rsync && rm -r /var/lib/apt/lists/*
4
5
RUN a2enmod rewrite
6
7
+# install the PHP extensions we need
8
+RUN apt-get update && apt-get install -y libpng12-dev && rm -rf /var/lib/apt/lists/* \
9
+ && docker-php-ext-install gd \
10
+ && apt-get purge --auto-remove -y libpng12-dev
11
+RUN docker-php-ext-install mysqli
12
+
13
VOLUME /var/www/html
14
15
ENV WORDPRESS_VERSION 4.0.0
0 commit comments