-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
95 lines (77 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
FROM alpine:3.13
LABEL Maintainer="Morteza Fathi <[email protected]>" \
Description="Lightweight container with Nginx 1.18 & PHP-FPM 8 based on Alpine Linux."
ARG PHP_VERSION="8.0.2-r0"
# Install packages and remove default server definition
RUN apk --no-cache add php8=${PHP_VERSION} \
php8-ctype \
php8-curl \
php8-dom \
php8-exif \
php8-fileinfo \
php8-fpm \
php8-gd \
php8-iconv \
php8-intl \
php8-mbstring \
php8-mysqli \
php8-opcache \
php8-openssl \
php8-pecl-imagick \
php8-pecl-redis \
php8-phar \
php8-session \
php8-simplexml \
php8-soap \
php8-soap \
php8-xml \
php8-xmlreader \
php8-zip \
php8-zlib \
php8-pcntl \
php8-tokenizer \
php8-xmlwriter \
php8-json \
php8-bcmath \
php8-pdo \
php8-pdo_mysql \
nginx supervisor curl tzdata htop mysql-client nano
# Install packages and remove default server definition
RUN apk --no-cache add git
RUN rm /etc/nginx/conf.d/default.conf
# Symlink php8 => php
RUN ln -s /usr/bin/php8 /usr/bin/php
# Install PHP tools
RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && mv wp-cli.phar /usr/local/bin/wp
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && php composer-setup.php --install-dir=/usr/local/bin --filename=composer && \
mkdir -p /.composer/cache/
# Configure nginx
COPY docker/config/nginx.conf /etc/nginx/nginx.conf
# Configure PHP-FPM
COPY docker/config/fpm-pool.conf /etc/php8/php-fpm.d/www.conf
COPY docker/config/php.ini /etc/php8/conf.d/custom.ini
# Configure supervisord
COPY docker/config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN set -x \
&& adduser -u 1000 -D -S -G www-data www-data
# Setup document root
RUN mkdir -p /var/www/html
# Make sure files/folders needed by the processes are accessable when they run under the nobody user
RUN chown -R www-data.www-data /var/www/html && \
chown -R www-data.www-data /run && \
chown -R www-data.www-data /var/lib/nginx && \
chown -R www-data.www-data /var/log/nginx && \
chown -R www-data.www-data /.composer/
# Switch to use a non-root user from here on
USER www-data
# Add application
WORKDIR /var/www/html
COPY --chown=www-data ./ /var/www/html/
RUN chmod 777 -R storage/ \
&& chmod 777 -R bootstrap/cache/
# Expose the port nginx is reachable on
EXPOSE 8080
# Let supervisord start nginx & php-fpm
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
# Configure a healthcheck to validate that everything is up&running
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping