# https://git.zx2c4.com/cgit/ # https://wiki.archlinux.org/title/Cgit FROM archlinux # Install cgit and webserver RUN pacman-key --init RUN pacman -Syu --needed --noconfirm apache cgit # Copy configuration files # Back-end datastore is expected to be mounted to /data (read-only) COPY httpd.conf /etc/httpd/conf/httpd.conf COPY cgitrc /etc/cgitrc EXPOSE 80 CMD ["/usr/bin/httpd", "-DFOREGROUND"]