aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
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"]