blob: 7108420e0fdcb4d0d6b4f71cb7f871270838d887 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 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
CMD ["/usr/bin/httpd", "-DFOREGROUND"]
|