summaryrefslogtreecommitdiffstats
path: root/cgit/Dockerfile
blob: 9e1c4421244b08165d2f7071d40961000a012b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# https://git.zx2c4.com/cgit/

FROM alpine

RUN apk --no-cache upgrade
RUN apk --no-cache add apache2 cgit

COPY httpd.conf /etc/apache2/
COPY cgitrc /etc/

EXPOSE 80
CMD ["/usr/sbin/httpd", "-DFOREGROUND"]