2023-05-20 11:08:16 +00:00
|
|
|
FROM debian:11
|
2023-05-20 09:52:09 +00:00
|
|
|
LABEL maintainer="ahwx@ahwx.org"
|
2023-05-20 11:08:16 +00:00
|
|
|
RUN apt-get -y update && apt-get -y install php php-fpm php-curl nginx nginx-common git
|
2023-05-20 15:22:57 +00:00
|
|
|
RUN git clone https://github.com/Ahwxorg/binternet /var/www/html/binternet
|
|
|
|
|
COPY nginx.conf /etc/nginx/sites-enabled/binternet
|
2023-05-20 09:52:09 +00:00
|
|
|
EXPOSE 8009
|
2023-05-20 11:08:16 +00:00
|
|
|
CMD service php$(php -v | grep PHP | head -n1 | cut -d " " -f2 | cut -d "." -f1-2)-fpm start && /usr/sbin/nginx -g "daemon off;"
|