-
Notifications
You must be signed in to change notification settings - Fork 396
/
Dockerfile
26 lines (21 loc) · 1 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM php:7.1-apache-jessie
MAINTAINER ZQian<[email protected]>
# Environment
#RUN sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
#RUN sed -i 's|security.debian.org/debian-security|mirrors.ustc.edu.cn/debian-security|g' /etc/apt/sources.list
RUN apt-get update && apt-get install -y wget libjpeg-dev libpng-dev libfreetype6-dev libmagickwand-dev --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
# ImageMagick
&& pecl install http://pecl.php.net/get/imagick-3.4.3.tgz \
# Rewrite
&& sed -i '166s/None/All/g' /etc/apache2/apache2.conf \
&& ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load
# Ext
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install -j$(nproc) gd && docker-php-ext-enable imagick
# Application
ENV IMAGE_VERSION=2.0
COPY . /var/www/html
RUN chmod a+w imgs data
VOLUME ["/var/www/html/data","/var/www/html/imgs"]
CMD ["apache2-foreground"]