forum/Dockerfile

97 lines
3.3 KiB
Docker
Raw Normal View History

2018-06-25 00:21:05 +02:00
# the different stages of this Dockerfile are meant to be built into separate images
# https://docs.docker.com/compose/compose-file/#target
ARG PHP_VERSION=7.2
ARG NGINX_VERSION=1.15
### NGINX
FROM nginx:${NGINX_VERSION}-alpine AS symfony_docker_nginx
COPY docker/nginx/conf.d /etc/nginx/conf.d/
COPY public /srv/app/public/
### H2 PROXY
2018-10-25 14:40:54 +02:00
FROM alpine:latest AS symfony_docker_h2-proxy-cert
2018-06-25 00:21:05 +02:00
RUN apk add --no-cache openssl
# Use this self-generated certificate only in dev, IT IS NOT SECURE!
RUN openssl genrsa -des3 -passout pass:NotSecure -out server.pass.key 2048
RUN openssl rsa -passin pass:NotSecure -in server.pass.key -out server.key
RUN rm server.pass.key
RUN openssl req -new -passout pass:NotSecure -key server.key -out server.csr \
-subj '/C=SS/ST=SS/L=Gotham City/O=Symfony/CN=localhost'
RUN openssl x509 -req -sha256 -days 365 -in server.csr -signkey server.key -out server.crt
2018-10-25 14:40:54 +02:00
FROM nginx:${NGINX_VERSION}-alpine AS symfony_docker_h2-proxy
2018-06-25 00:21:05 +02:00
RUN mkdir -p /etc/nginx/ssl/
2018-10-25 14:40:54 +02:00
COPY --from=symfony_docker_h2-proxy-cert server.key server.crt /etc/nginx/ssl/
2018-06-25 00:21:05 +02:00
COPY ./docker/h2-proxy/default.conf /etc/nginx/conf.d/default.conf
### PHP
FROM php:${PHP_VERSION}-fpm-alpine AS symfony_docker_php
2017-04-22 20:29:25 +02:00
RUN apk add --no-cache --virtual .persistent-deps \
git \
icu-libs \
zlib
2018-10-13 02:13:23 +02:00
ENV APCU_VERSION 5.1.12
2018-06-25 00:21:05 +02:00
RUN set -eux \
2017-04-22 20:29:25 +02:00
&& apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS \
icu-dev \
zlib-dev \
2019-03-19 16:18:11 +01:00
&& docker-php-ext-install -j$(nproc) \
2017-04-22 20:29:25 +02:00
intl \
zip \
&& pecl install \
apcu-${APCU_VERSION} \
&& docker-php-ext-enable --ini-name 20-apcu.ini apcu \
&& docker-php-ext-enable --ini-name 05-opcache.ini opcache \
2019-03-19 16:18:11 +01:00
&& runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
| tr ',' '\n' \
| sort -u \
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
)" \
&& apk add --no-cache --virtual .api-phpexts-rundeps $runDeps \
2017-04-22 20:29:25 +02:00
&& apk del .build-deps
2019-01-06 13:48:24 +01:00
RUN ln -s $PHP_INI_DIR/php.ini-production $PHP_INI_DIR/php.ini
COPY docker/app/conf.d/symfony.ini $PHP_INI_DIR/conf.d/symfony.ini
2018-10-13 02:13:23 +02:00
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
2017-11-22 08:52:31 +01:00
COPY docker/app/docker-entrypoint.sh /usr/local/bin/docker-app-entrypoint
RUN chmod +x /usr/local/bin/docker-app-entrypoint
2017-04-22 20:29:25 +02:00
2017-11-22 08:52:31 +01:00
WORKDIR /srv/app
ENTRYPOINT ["docker-app-entrypoint"]
CMD ["php-fpm"]
2017-04-22 20:29:25 +02:00
# https://getcomposer.org/doc/03-cli.md#composer-allow-superuser
ENV COMPOSER_ALLOW_SUPERUSER 1
2017-10-16 14:46:43 +02:00
# Use prestissimo to speed up builds
2019-01-25 09:53:06 +01:00
RUN composer global require "symfony/flex" --prefer-dist --no-progress --no-suggest --classmap-authoritative --no-interaction
2017-10-16 14:46:43 +02:00
2017-10-19 22:32:57 +02:00
# Allow to use development versions of Symfony
2018-10-25 14:40:54 +02:00
ARG STABILITY="stable"
2018-08-23 15:17:35 +02:00
ENV STABILITY ${STABILITY:-stable}
2017-10-19 22:32:57 +02:00
2017-10-26 14:51:56 +02:00
# Allow to select skeleton version
ARG SYMFONY_VERSION=""
2017-10-26 14:51:56 +02:00
2017-10-16 14:46:43 +02:00
# Download the Symfony skeleton and leverage Docker cache layers
RUN composer create-project "symfony/skeleton ${SYMFONY_VERSION}" . --stability=$STABILITY --prefer-dist --no-dev --no-progress --no-scripts --no-plugins --no-interaction
2017-04-22 20:29:25 +02:00
2017-11-22 08:52:31 +01:00
###> recipes ###
###< recipes ###
COPY . .
2017-04-22 20:29:25 +02:00
RUN mkdir -p var/cache var/logs var/sessions \
&& composer install --prefer-dist --no-dev --no-scripts --no-progress --no-suggest --classmap-authoritative --no-interaction \
2019-01-25 09:53:06 +01:00
&& composer clear-cache \
&& chown -R www-data var