Binternet/Dockerfile

8 lines
406 B
Text
Raw Permalink Normal View History

FROM debian:11
2023-05-20 09:52:09 +00:00
LABEL maintainer="ahwx@ahwx.org"
RUN apt-get -y update && apt-get -y install php php-fpm php-curl nginx nginx-common git
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
CMD service php$(php -v | grep PHP | head -n1 | cut -d " " -f2 | cut -d "." -f1-2)-fpm start && /usr/sbin/nginx -g "daemon off;"