-
Notifications
You must be signed in to change notification settings - Fork 132
/
Dockerfile
55 lines (44 loc) · 1.44 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
FROM php:8.2-apache
MAINTAINER Julian Xhokaxhiu <info at julianxhokaxhiu dot com>
# internal variables
ENV HTML_DIR /var/www/html
ENV FULL_BUILDS_DIR $HTML_DIR/builds/full
# set the working directory
WORKDIR $HTML_DIR
# enable mod_rewrite
RUN a2enmod rewrite
# install the PHP extensions we need
RUN apt-get update \
&& buildDeps=" \
zlib1g-dev \
libzip-dev \
" \
&& apt-get install -y git libzip4 $buildDeps --no-install-recommends \
&& rm -r /var/lib/apt/lists/* \
\
&& docker-php-ext-install zip \
\
&& pecl install apcu \
&& docker-php-ext-enable apcu \
\
&& docker-php-source delete \
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $buildDeps
# set recommended settings for APCu
# see http://php.net/manual/en/apcu.configuration.php
RUN { \
echo 'apc.ttl=7200'; \
} > /usr/local/etc/php/conf.d/opcache-recommended.ini
# install latest version of composer
ADD https://getcomposer.org/composer.phar /usr/local/bin/composer
RUN chmod 0755 /usr/local/bin/composer
# add all the project files
COPY . $HTML_DIR
# enable indexing for Apache
RUN sed -i "1s;^;Options +Indexes\n\n;" .htaccess
# install dependencies
RUN composer install --no-plugins --no-scripts
# fix permissions
RUN chmod -R 0775 /var/www/html \
&& chown -R www-data:www-data /var/www/html
# create volumes
VOLUME $FULL_BUILDS_DIR