mirror of
https://git.netzspielplatz.de/docker-multiarch/wordpress-fpm-alpine-webp.git
synced 2025-11-08 18:39:24 +00:00
12 lines
279 B
Docker
12 lines
279 B
Docker
FROM wordpress:fpm-alpine
|
|
|
|
RUN apk update && apk add --no-cache freetype-dev \
|
|
libjpeg-turbo-dev \
|
|
libwebp-dev \
|
|
libpng-dev \
|
|
libwebp-tools \
|
|
curl-dev \
|
|
ssmtp
|
|
|
|
RUN docker-php-ext-configure gd --with-freetype --with-webp --with-jpeg && \
|
|
docker-php-ext-install gd curl
|