aboutsummaryrefslogtreecommitdiff
path: root/services/docker/git-server/Dockerfile
blob: b72512206ef14929e704c4d154921514badae0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM debian:latest
RUN apt-get update && apt-get install -y \
    git cgit lighttpd apache2-utils python3-pygments python3-markdown \
    tar gzip bzip2 zip unzip tini && \
    rm -rf /var/lib/apt/lists/*

ENV GIT_CONFIG_SYSTEM=/etc/gitconfig GIT_CONFIG_GLOBAL=/git/private/gitconfig

ADD gitconfig /etc/gitconfig
ADD --chmod=755 hooks/* /etc/git/hooks/
ADD git-lighttpd.conf git-auth.conf /app/
ADD --chmod=755 lighttpd-wrapper.bash /app/

VOLUME [ "/git" ]
CMD [ "tini", "--", "/app/lighttpd-wrapper.bash" ]