File tree 1 file changed +7
-6
lines changed
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'
3
3
4
4
FROM ${NAME_IMAGE_BASE}:${NAME_IMAGE_TAG}
5
5
6
- ARG BUILD_ID="unknown"
7
- ARG COMMIT_ID="unknown"
8
6
ARG VERSION_OS='3.16'
9
7
ARG VERSION_PHP='8.2'
10
8
11
9
LABEL \
12
10
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] >'
17
13
18
14
RUN set -ex; \
19
15
\
@@ -22,11 +18,13 @@ RUN set -ex; \
22
18
ca-certificates \
23
19
curl \
24
20
curl-dev \
21
+ freetype-dev \
25
22
ghostscript \
26
23
icu-dev \
27
24
imagemagick \
28
25
imagemagick-dev \
29
26
imagemagick-libs \
27
+ jpeg-dev \
30
28
libjpeg-turbo-dev \
31
29
libmcrypt-dev \
32
30
libpng-dev \
@@ -39,6 +37,9 @@ RUN set -ex; \
39
37
postgresql-dev \
40
38
runit; \
41
39
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; \
42
43
docker-php-ext-install \
43
44
bcmath \
44
45
bz2 \
You can’t perform that action at this time.
0 commit comments