blob: 61a64f2b67d29ed999160c44d4ee14649d42253f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
FROM alpine:latest
LABEL MAINTAINER="heckyel@riseup.net"
# Install needed packages
RUN set -xe \
&& apk add --no-cache --purge -uU \
# Install gitolite
gitolite git openssh \
# install git-daemon
git-daemon \
# add nginx and cgit
cgit nginx fcgiwrap spawn-fcgi \
# python 3 pkg for highlight, about page
py3-markdown py3-pygments \
# Create nginx folder
&& mkdir -p /run/nginx \
# Clean up
&& rm -rf /var/cache/apk/* \
&& rm -rf /tmp/*
# Volume to store all ssh host key
VOLUME [ "/etc/ssh" ]
# Volume to store Gitolite data, used for Gitolite setup
VOLUME [ "/var/lib/git" ]
EXPOSE 22 80 9418
WORKDIR /var/lib/git
COPY cgit.css /usr/share/webapps/cgit/cgit.css
COPY md2html /usr/lib/cgit/filters/html-converters/md2html
COPY syntax-highlighting.py /usr/lib/cgit/filters/syntax-highlighting.py
COPY gitolite.rc /var/lib/git/.gitolite.rc
COPY entrypoint.sh /
RUN chmod u+x /usr/lib/cgit/filters/html-converters/md2html
RUN chmod u+x /usr/lib/cgit/filters/syntax-highlighting.py
RUN chmod u+x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
|