I want to build custom docker with nginx Tengine2.2 + mariadb 10.2 (or 10.4) + PHP 7.4 + phpmyadmin 5.0. I would like to ask for the command to install the above components via dockerfile
My dockerfile looks like this:
FROM aapanel/aapanel:lib
USER root
RUN su
#RUN yum -y update && yum upgrade -y
#Update AAPanel
RUN bt 16
#Enable IPv6
RUN touch /www/server/panel/data/ipv6.pl \
&& echo "True" > /www/server/panel/data/ipv6.pl
#Install nginx Tengine2.2
RUN xxxx
#Install mariadb 10.2 (or 10.4)
RUN xxxx
#Install PHP 7.4
RUN xxxx
#Install phpmyadmin 5.0
RUN xxxx
#Reload AAPanel
RUN bt 1
RUN bt 9
WORKDIR /www/