2016-03-16 20:34:24 +08:00
|
|
|
FROM alpine:latest
|
2016-03-16 21:10:12 +08:00
|
|
|
MAINTAINER Tim de Pater <code@trafex.nl>
|
2016-02-16 01:20:56 +08:00
|
|
|
|
2016-03-16 20:34:24 +08:00
|
|
|
# Install packages
|
|
|
|
RUN apk --update add php7-fpm nginx supervisor --repository http://nl.alpinelinux.org/alpine/edge/testing/
|
2016-02-24 18:08:50 +08:00
|
|
|
|
|
|
|
# Configure nginx
|
2016-03-16 20:34:24 +08:00
|
|
|
COPY config/nginx.conf /etc/nginx/nginx.conf
|
2016-02-24 18:08:50 +08:00
|
|
|
|
|
|
|
# Configure PHP-FPM
|
2016-03-16 20:34:24 +08:00
|
|
|
COPY config/fpm-pool.conf /etc/php7/php-fpm.d/zzz_custom.conf
|
|
|
|
COPY config/php.ini /etc/php7/conf.d/zzz_custom.ini
|
|
|
|
|
|
|
|
# Configure supervisord
|
|
|
|
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
2016-02-24 18:08:50 +08:00
|
|
|
|
|
|
|
# Add application
|
|
|
|
RUN mkdir -p /var/www/html
|
|
|
|
WORKDIR /var/www/html
|
2016-02-16 17:13:29 +08:00
|
|
|
COPY src/ /var/www/html/
|
|
|
|
|
2016-02-24 18:08:50 +08:00
|
|
|
EXPOSE 80 443
|
2016-03-16 20:34:24 +08:00
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
|