From 8f7a23aaf2fe74bcfa583fa77f1f6924b2c42200 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 14 Jul 2024 15:12:00 -0500 Subject: Initial commit --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..789b9db --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM ubuntu/apache2 + +RUN apt update +RUN apt install -y cgit python3-markdown + +RUN a2enmod rewrite +RUN a2enmod cgi + +COPY apache2.conf /etc/apache2/apache2.conf +COPY cgit.conf /etc/cgitrc + +RUN rm /var/www/html/index.html -- cgit v1.2.3