-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
68 lines (55 loc) · 1.87 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
FROM php:8.3-fpm-alpine
# Install packages
RUN apk update \
&& apk --no-cache add \
php82-json \
php82-openssl \
php82-curl \
php82-zlib \
php82-session \
php82-mbstring \
php82-fileinfo \
php82-gd \
nginx \
supervisor \
curl
# Copy composer
COPY --from=composer/composer:2-bin /composer /usr/bin/composer
# Configure nginx
COPY config/default.conf /etc/nginx/http.d/default.conf
# Configure PHP & PHP-FPM
RUN cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini \
&& sed -i 's/expose_php = On/expose_php = Off/g' /usr/local/etc/php/php.ini
COPY config/php.ini /usr/local/etc/php/conf.d/custom.ini
COPY config/fpm-pool.conf /usr/local/etc/php-fpm.d/www.conf
# Configure supervisord
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
# Make sure files/folders needed by the processes are accessable when they run under the nobody user
RUN chown -R nobody.nobody /run \
&& chown -R nobody.nobody /var/lib/nginx \
&& chown -R nobody.nobody /var/log/nginx \
# Setup document root
&& mkdir -p /var/www/html \
# Cleanup
&& rm -rf /var/cache/apk/* \
/usr/share/doc \
/usr/share/man/ \
/usr/share/info/* \
/var/cache/man/* \
/tmp/*
# Make the document root a volume
VOLUME /var/www/html
# Switch to use a non-root user from here on
USER nobody
# Add application
WORKDIR /var/www/html
COPY --chown=nobody . /var/www/html/
# Install dependencies
RUN composer install --no-dev --no-interaction --prefer-dist --optimize-autoloader \
&& chown -R nobody:nobody /var/www/html/vendor
# Expose nginx port
EXPOSE 8080
# Start nginx & php-fpm via supervisor
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/ping