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