mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 04:21:17 -05:00
* 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
10 lines
317 B
Docker
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
|