File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,13 @@ ARG NAME_IMAGE_TAG='8.2-fpm-alpine3.16'
33
44FROM ${NAME_IMAGE_BASE}:${NAME_IMAGE_TAG}
55
6- ARG BUILD_ID="unknown"
7- ARG COMMIT_ID="unknown"
86ARG VERSION_OS='3.16'
97ARG VERSION_PHP='8.2'
108
119LABEL \
1210 ALPINE="$VERSION_OS" \
13- BUILD_ID="$BUILD_ID" \
14- COMMIT_ID="$COMMIT_ID" \
15- MAINTAINER=
'Samuel Fontebasso <[email protected] >' \
16- PHP_VERSION="$VERSION_PHP"
11+ PHP_VERSION="$VERSION_PHP" \
12+ MAINTAINER=
'Samuel Fontebasso <[email protected] >' 1713
1814RUN set -ex; \
1915 \
@@ -22,11 +18,13 @@ RUN set -ex; \
2218 ca-certificates \
2319 curl \
2420 curl-dev \
21+ freetype-dev \
2522 ghostscript \
2623 icu-dev \
2724 imagemagick \
2825 imagemagick-dev \
2926 imagemagick-libs \
27+ jpeg-dev \
3028 libjpeg-turbo-dev \
3129 libmcrypt-dev \
3230 libpng-dev \
@@ -39,6 +37,9 @@ RUN set -ex; \
3937 postgresql-dev \
4038 runit; \
4139 apk add --no-cache --virtual build-dependencies build-base gcc wget autoconf linux-headers; \
40+ docker-php-ext-configure gd \
41+ --with-freetype \
42+ --with-jpeg; \
4243 docker-php-ext-install \
4344 bcmath \
4445 bz2 \
You can’t perform that action at this time.
0 commit comments