blob: c62cb3074a49ed88fcf8b85aa0c249e5004ae6a1 (
plain)
1
2
3
4
5
6
7
8
9
|
FROM alpine:3.21
WORKDIR /root
COPY Caddyfile .
COPY supervisord.conf .
COPY entrypoint.sh .
COPY cgitrc.template /etc/
RUN apk add --no-cache cgit git caddy fcgiwrap supervisor py3-markdown py3-pygments envsubst
CMD ["supervisord", "-c", "supervisord.conf"]
ENTRYPOINT ["./entrypoint.sh"]
|