This commit is contained in:
Piotr Biernat 2020-12-23 09:34:34 +01:00
parent b85ef29cb6
commit 25959b65ca
2 changed files with 7 additions and 3 deletions

View File

@ -4,9 +4,10 @@ RUN apk add --update --no-cache coreutils supervisor acl nginx make curl bash \
&& mkdir /run/nginx && mkdir /var/www/app && mkdir /run/php
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community \
php7 php7-fpm php7-opcache php7-mysqli php7-json php7-openssl php7-curl php7-zlib \
php7-xml php7-phar php7-intl php7-dom php7-xmlreader php7-ctype php7-session composer \
php7-mbstring php7-gd php7-tokenizer php7-xmlwriter php7-fileinfo php7-pdo php7-pdo_mysql
php7 php7-fpm php7-opcache php7-mysqli php7-json php7-openssl php7-curl php7-zlib composer \
php7-xml php7-phar php7-intl php7-dom php7-simplexml php7-xmlreader php7-ctype php7-session \
php7-mbstring php7-gd php7-tokenizer php7-xmlwriter php7-fileinfo php7-pdo php7-pdo_mysql \
php7-pecl-xdebug php7-pdo_sqlite
COPY src/etc /etc
COPY src/entrypoint.sh /
@ -15,6 +16,8 @@ RUN chmod +x /entrypoint.sh
RUN ln -sf /dev/stdout /var/log/nginx/app_access.log \
&& ln -sf /dev/stderr /var/log/nginx/app_error.log
WORKDIR /var/www/app
EXPOSE 80
ENTRYPOINT ["/entrypoint.sh"]

View File

@ -1,5 +1,6 @@
[supervisord]
logfile=/var/log/supervisord.log
pidfile=/var/run/supervisord.pid
nodaemon=false
[program:nginx]