blob: 389b7776b4e849688badbb331a8c98457b5c077c (
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
|
FROM debian:latest AS lighttpd-config-generator
RUN apt-get update && apt-get install -y apache2-utils
RUN --mount=type=secret,id=git-server,required=true \
. /run/secrets/git-server && \
htpasswd -cb /user-info ${CRUPEST_GIT_SERVER_USERNAME} ${CRUPEST_GIT_SERVER_PASSWORD}
ARG ROOT_URL
ADD cgitrc.template /cgitrc.template
RUN sed "s|@@CRUPEST_ROOT_URL@@|${ROOT_URL}|g" /cgitrc.template > /cgitrc
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/*
COPY --from=lighttpd-config-generator /user-info /app/
COPY --from=lighttpd-config-generator /cgitrc /etc/cgitrc
ADD git-lighttpd.conf git-auth.conf /app/
ADD --chmod=755 lighttpd-wrapper /app/
VOLUME [ "/git" ]
ENTRYPOINT ["/usr/bin/tini", "--"]
CMD [ "/app/lighttpd-wrapper" ]
|