Initial commit

This commit is contained in:
Micha Gläß-Stöcker 2020-07-29 23:12:44 +02:00
commit 5eb17a48f8
2 changed files with 35 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM wordpress:fpm-alpine
RUN apk update && apk add --no-cache freetype-dev \
libjpeg-turbo-dev \
libwebp-dev \
libpng-dev \
libwebp-tools \
curl-dev
RUN docker-php-ext-configure gd --with-freetype --with-webp --with-jpeg && \
docker-php-ext-install gd
RUN docker-php-ext-install curl