diff options
| author | Christian <[email protected]> | 2026-05-14 20:50:26 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-05-14 21:14:12 -0500 |
| commit | 73b9aa3d22d5696366839873d0f8e9c54cd44444 (patch) | |
| tree | 0f2f1944161d9d069caccaf951627c3141e91ea2 /Dockerfile | |
| parent | f4dde3803de5a9e6093ff1b327a9e582096f807d (diff) | |
Support reverse proxy deployment and general container improvements
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,10 +1,9 @@ -FROM alpine +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; \ - envsubst < /etc/cgitrc.template > /etc/cgitrc +RUN apk add --no-cache cgit git caddy fcgiwrap supervisor py3-markdown py3-pygments envsubst CMD ["supervisord", "-c", "supervisord.conf"] ENTRYPOINT ["./entrypoint.sh"] |
