nginx-php/Dockerfile
Piotr Biernat 4ab2cb28f6
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
[fix] Fixed image building config.
[add] Drone CI build and publish processes.
2021-11-22 21:03:20 +01:00

27 lines
916 B
Docker

FROM alpine:latest
RUN apk add --update --no-cache coreutils supervisor acl nginx make curl bash icu-libs \
&& mkdir -p /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 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 /
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"]
CMD ["supervisord", "--nodaemon", "--configuration", "/etc/supervisord.conf"]