1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-04 10:34:49 +02:00
dockerfiles/phpbb/Dockerfile

28 lines
832 B
Docker
Raw Normal View History

2015-05-21 11:17:15 +02:00
#
# Dockerfile for phpBB
#
FROM php:5.6-apache
MAINTAINER kev<noreply@datageek.info>
RUN a2enmod rewrite
2015-05-21 11:43:23 +02:00
RUN apt-get update && apt-get install -y libpng12-dev libjpeg-dev libpq-dev \
2015-05-21 11:17:15 +02:00
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
2015-05-21 11:43:23 +02:00
&& docker-php-ext-install gd mysqli pgsql
2015-05-21 11:17:15 +02:00
WORKDIR /var/www/html
ENV PHPBB_VERSION 3.1.4
2015-05-21 11:43:23 +02:00
ENV PHPBB_SHA512 cc13d34679d987b7c956999b273b109fd441dcc786d7612c4b726423d674ade5
2015-05-21 11:17:15 +02:00
ENV PHPBB_URL https://www.phpbb.com/files/release/phpBB-3.1.4.tar.bz2
ENV PHPBB_FILE phpBB.tar.bz2
RUN curl -fSL ${PHPBB_URL} -o ${PHPBB_FILE} \
2015-05-21 11:43:23 +02:00
&& echo "${PHPBB_SHA512} ${PHPBB_FILE}" | sha256sum -c - \
&& tar -xo --strip-components=1 -f ${PHPBB_FILE} \
2015-05-21 11:17:15 +02:00
&& rm ${PHPBB_FILE} \
&& chown -R www-data:www-data .