Stikked/docker/php/Dockerfile
Claude 4462a471c5 Rewrite Docker-Setup
* make it simpler and cleaner
* switch to nginx-alpine and php-fpm-alpine
* docker-compose: autobuild php-image for stikked
* serve all files directly (htdocs is mounted instead of copied)
* stikked-configuration for docker resides in docker/stikked.php
2019-11-23 16:58:17 +01:00

10 lines
317 B
Docker

FROM php:7.1-fpm-alpine3.9
RUN apk add -U libjpeg-turbo-dev libpng-dev freetype-dev
RUN docker-php-ext-configure gd \
--enable-gd-native-ttf \
--with-freetype-dir=/usr/include/freetype2 \
--with-png-dir=/usr/include \
--with-jpeg-dir=/usr/include
RUN docker-php-ext-install gd mysqli