mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
6 years ago
|
FROM php:7.1-apache-jessie
|
||
|
MAINTAINER ZQian<zqiannnn@gmail.com>
|
||
|
|
||
|
# 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"]
|