summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-13 09:55:21 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-13 09:55:21 +0200
commit580ee84eb4f0c3c4e64651b8d965a544fc9c110f (patch)
tree1450b5f19ba5b2bdf6c3f838005c8c6507f87461 /Dockerfile
parent58181e629a5d51eaee7f6ad08fcbda4411b22d19 (diff)
downloadcgit-1.1.tar.gz
cgit-1.1.zip
misc: update cgit, Debian, and ApacheHEADv1.1master
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 4c23eb2..0ca94d4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
-FROM debian:13.3-slim AS build
+FROM debian:13-slim AS build
-ARG CGIT_COMMIT=09d24d7cd0b7e85633f2f43808b12871bb209d69
+ARG CGIT_COMMIT=044821677c774cd24f25f1818ea51d09cc64b006
# Install build dependencies
RUN apt-get update \
@@ -14,7 +14,7 @@ WORKDIR /usr/src/cgit-${CGIT_COMMIT}
COPY cgit.conf .
RUN make get-git && make LUA_PKGCONFIG=lua5.2 && make install && rm -rf $(pwd)
-FROM httpd:2.4.66 AS final
+FROM httpd:2-trixie AS final
ARG UID=1000 GID=1000