Add php/Dockerfile-7.4
This commit is contained in:
parent
68d7d06a83
commit
10dddc7afe
1 changed files with 32 additions and 0 deletions
32
php/Dockerfile-7.4
Normal file
32
php/Dockerfile-7.4
Normal file
|
@ -0,0 +1,32 @@
|
|||
FROM ubuntu:20.04
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get update && apt-get install -y software-properties-common
|
||||
RUN add-apt-repository ppa:ondrej/php
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
php7.4-fpm \
|
||||
php7.4-mysql \
|
||||
php7.4-xml \
|
||||
php7.4-soap \
|
||||
php7.4-mbstring \
|
||||
php7.4-curl \
|
||||
php7.4-dev \
|
||||
git \
|
||||
wget
|
||||
|
||||
# Install php-spy
|
||||
RUN git clone https://github.com/adsr/phpspy.git \
|
||||
&& cd phpspy \
|
||||
&& make \
|
||||
&& mv phpspy /usr/local/bin \
|
||||
&& cd .. \
|
||||
&& rm -rf phpspy
|
||||
|
||||
RUN sed -i 's/;clear_env = no/clear_env = no/' /etc/php/7.4/fpm/pool.d/www.conf
|
||||
RUN sed -i 's/listen = \/run\/php\/php7.4-fpm.sock/listen = 9074/' /etc/php/7.4/fpm/pool.d/www.conf
|
||||
|
||||
EXPOSE 9074
|
||||
|
||||
CMD ["php-fpm7.4", "-F"]
|
Loading…
Reference in a new issue