2017-12-17 13:18:10 +00:00
|
|
|
# NAME leenooks/wordpress
|
2023-04-27 11:48:31 +00:00
|
|
|
# VERSION 5.9-fpm
|
2017-12-07 04:19:02 +00:00
|
|
|
|
2023-04-27 11:48:31 +00:00
|
|
|
FROM wordpress:5.9-fpm-alpine
|
2017-12-13 10:54:20 +00:00
|
|
|
|
2023-04-27 11:48:31 +00:00
|
|
|
# Change to http respositories, so they we can cache the install packages
|
|
|
|
RUN if [ -n ${HTTP_PROXY} ] ; then sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
2020-04-28 06:30:48 +00:00
|
|
|
|
2023-04-27 11:48:31 +00:00
|
|
|
# Tune PHP
|
2020-04-28 06:30:48 +00:00
|
|
|
RUN sed -e 's/^expose_php = On/expose_php = Off/' /usr/local/etc/php/php.ini-production > /usr/local/etc/php/php.ini
|
|
|
|
RUN sed -i -e 's#^;sendmail_path =#sendmail_path = "/usr/bin/msmtp -t"#' /usr/local/etc/php/php.ini
|
2023-04-27 11:48:31 +00:00
|
|
|
RUN adduser -g "Hosting Admin User" -u 1000 -G www-data -h /var/www/html -HD lamp && mkdir /run/nginx
|
2017-12-13 10:54:20 +00:00
|
|
|
|
2023-04-27 11:48:31 +00:00
|
|
|
# Base
|
|
|
|
RUN apk add --no-cache unzip zlib nginx msmtp
|
|
|
|
RUN curl -SLo /usr/local/bin/wait-for-it https://github.com/vishnubob/wait-for-it/raw/master/wait-for-it.sh && chmod +x /usr/local/bin/wait-for-it
|
|
|
|
|
|
|
|
COPY msmtprc /etc/
|
|
|
|
COPY docker/www.conf /usr/local/etc/php-fpm.d/
|
|
|
|
COPY docker/nginx-app.conf /etc/nginx/http.d/default.conf
|
2017-12-13 10:54:20 +00:00
|
|
|
|
2023-04-27 11:48:31 +00:00
|
|
|
COPY docker/init /sbin/
|
|
|
|
COPY update /usr/local/sbin
|
|
|
|
RUN chmod 550 /sbin/init && chown 0:0 /sbin/init
|
2018-02-02 10:14:10 +00:00
|
|
|
|
2023-04-27 11:48:31 +00:00
|
|
|
WORKDIR /var/www/html
|
|
|
|
EXPOSE 80
|
2019-05-03 13:40:23 +00:00
|
|
|
ENTRYPOINT [ "/sbin/init" ]
|
2018-02-02 10:14:10 +00:00
|
|
|
CMD [ "php-fpm" ]
|