summaryrefslogtreecommitdiff
path: root/cgit/Dockerfile
blob: dabdfd7952e7b44b3e44806573d8e040f96c0363 (plain)
1
2
3
4
5
FROM alpine:3.19
RUN apk add --no-cache cgit lighttpd highlight
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
EXPOSE 80
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]