1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/phpbb/Dockerfile

31 lines
861 B
Docker
Raw Normal View History

2015-05-21 09:17:15 +00:00
#
# Dockerfile for phpBB
#
2017-05-16 07:21:58 +00:00
FROM php:7-apache
2017-05-16 07:17:26 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-05-21 09:17:15 +00:00
2016-05-04 03:36:18 +00:00
RUN a2enmod rewrite
RUN set -xe \
&& apt-get update \
&& apt-get install -y curl unzip bzip2 libpq-dev libpng12-dev libjpeg-dev \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
&& docker-php-ext-install gd mysqli pgsql
2015-05-21 09:17:15 +00:00
WORKDIR /var/www/html
2017-05-16 07:17:26 +00:00
ENV PHPBB_VERSION 3.2.0
2015-05-21 10:59:21 +00:00
ENV PHPBB_URL https://www.phpbb.com/files/release/phpBB-${PHPBB_VERSION}.tar.bz2
2017-05-16 07:17:26 +00:00
ENV PHPBB_SHA 610d960b6e050b205b7248dea366c63bf1feee0551170c75fa4ecbacd5213a0d
2015-05-21 09:17:15 +00:00
ENV PHPBB_FILE phpBB.tar.bz2
2016-05-04 03:36:18 +00:00
RUN set -xe \
&& curl -fSL ${PHPBB_URL} -o ${PHPBB_FILE} \
&& echo "${PHPBB_SHA} ${PHPBB_FILE}" | sha256sum -c - \
&& tar -xjf ${PHPBB_FILE} --strip-components=1 \
&& rm ${PHPBB_FILE} \
&& chown -R www-data:www-data .
2015-05-21 09:17:15 +00:00