Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742183f commit 2d9556aCopy full SHA for 2d9556a
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM php:8.0
+FROM php:7.2
2
3
# keep ordered alphabetically to reduce diffs
4
RUN apt update && apt install -y \
@@ -31,7 +31,7 @@ RUN apt update && apt install -y \
31
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen \
32
&& docker-php-ext-enable opcache \
33
&& docker-php-ext-configure gettext --with-gettext=/usr/include/ \
34
- && docker-php-ext-configure gd --with-jpeg --with-webp --with-freetype \
+ && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
35
&& docker-php-ext-configure zip \
36
&& docker-php-ext-install -j$(nproc) gettext gd exif intl pdo pdo_mysql zip mysqli bcmath
37
0 commit comments