All checks were successful
build and push / build (push) Successful in 2m2s
Signed-off-by: Ava Affine <ava@sunnypup.io>
66 lines
2.3 KiB
Docker
66 lines
2.3 KiB
Docker
FROM php:7.4.33-fpm-alpine3.16 AS build
|
|
|
|
RUN apk update \
|
|
&& apk add --no-cache libpng-dev libzmq zeromq-dev git \
|
|
$PHPIZE_DEPS git composer nodejs npm \
|
|
&& docker-php-ext-install gd && docker-php-ext-install pdo_mysql && \
|
|
pecl install redis && docker-php-ext-enable redis
|
|
|
|
RUN git clone http://github.com/mkoppanen/php-zmq.git \
|
|
&& cd php-zmq \
|
|
&& phpize && ./configure \
|
|
&& make \
|
|
&& make install \
|
|
&& cd .. \
|
|
&& rm -fr php-zmq
|
|
RUN docker-php-ext-enable zmq
|
|
|
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
|
|
COPY pathfinder /app
|
|
WORKDIR /app
|
|
|
|
RUN composer self-update 2.1.8
|
|
RUN composer install
|
|
|
|
FROM trafex/alpine-nginx-php7:ba1dd422
|
|
|
|
RUN apk update && apk add --no-cache busybox-suid sudo php7-redis php7-pdo php7-pdo_mysql \
|
|
php7-fileinfo php7-event shadow gettext bash apache2-utils logrotate ca-certificates
|
|
|
|
# fix expired DST Cert
|
|
RUN sed -i '/^mozilla\/DST_Root_CA_X3.crt$/ s/^/!/' /etc/ca-certificates.conf \
|
|
&& update-ca-certificates
|
|
|
|
# symlink nginx logs to stdout/stderr for supervisord
|
|
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log
|
|
|
|
COPY static/logrotate/pathfinder /etc/logrotate.d/pathfinder
|
|
COPY static/nginx/nginx.conf /etc/nginx/templateNginx.conf
|
|
# we need to create sites_enabled directory in order for entrypoint.sh being able to copy file after envsubst
|
|
RUN mkdir -p /etc/nginx/sites_enabled/
|
|
COPY static/nginx/site.conf /etc/nginx/templateSite.conf
|
|
|
|
# Configure PHP-FPM
|
|
COPY static/php/fpm-pool.conf /etc/php7/php-fpm.d/zzz_custom.conf
|
|
|
|
COPY static/php/php.ini /etc/zzz_custom.ini
|
|
# configure cron
|
|
COPY static/crontab.txt /var/crontab.txt
|
|
# Configure supervisord
|
|
COPY static/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
COPY static/entrypoint.sh /
|
|
|
|
WORKDIR /var/www/html
|
|
COPY --chown=nobody --from=build /app pathfinder
|
|
|
|
RUN chmod 0766 pathfinder/logs pathfinder/tmp/ && rm index.php && touch /etc/nginx/.setup_pass && chmod +x /entrypoint.sh
|
|
COPY static/pathfinder/routes.ini /var/www/html/pathfinder/app/
|
|
COPY static/pathfinder/environment.ini /var/www/html/pathfinder/app/templateEnvironment.ini
|
|
|
|
WORKDIR /var/www/html
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
|