21 lines
603 B
Docker
21 lines
603 B
Docker
FROM ubuntu:20.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN apt update
|
|
RUN apt install -y lsb-release ca-certificates apt-transport-https software-properties-common
|
|
|
|
RUN add-apt-repository -y ppa:ondrej/php
|
|
|
|
RUN apt update
|
|
RUN apt install -y supervisor iputils-ping libboost-dev libxml2-dev
|
|
RUN apt install -y php8.1-cli php8.1-fpm php8.1-curl php8.1-mbstring \
|
|
php8.1-xml php8.1-intl \
|
|
php8.1-zip php8.1-xdebug php8.1-pgsql php8.1-bcmath php8.1-amqp \
|
|
php-imagick php8.1-gmp php8.1-redis
|
|
|
|
RUN mkdir /run/php
|
|
|
|
CMD ["supervisord", "-c", "/etc/supervisor/supervisor_nodeamon.conf"]
|
|
|
|
EXPOSE 9000
|