aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-05-14 20:50:26 -0500
committerChristian <[email protected]>2026-05-14 21:14:12 -0500
commit73b9aa3d22d5696366839873d0f8e9c54cd44444 (patch)
tree0f2f1944161d9d069caccaf951627c3141e91ea2 /Dockerfile
parentf4dde3803de5a9e6093ff1b327a9e582096f807d (diff)
Support reverse proxy deployment and general container improvements
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 8a17307..c62cb30 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"]