From 3eb04f39e55091bf042d97f0762a21f3e78a4383 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 2 Jun 2026 19:38:52 +0900 Subject: feat(repos): add about-filter --- services/repos/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'services/repos/Dockerfile') diff --git a/services/repos/Dockerfile b/services/repos/Dockerfile index 2734a1ee..b2bdba80 100644 --- a/services/repos/Dockerfile +++ b/services/repos/Dockerfile @@ -15,7 +15,9 @@ RUN apt-get update && \ build-essential \ curl \ git \ + libluajit-5.1-dev \ libssl-dev \ + pkg-config \ zlib1g-dev RUN git clone --branch $CGIT_VERSION https://git.zx2c4.com/cgit /cgit @@ -24,7 +26,7 @@ WORKDIR /cgit RUN --mount=type=bind,source=./cgit.conf,target=./cgit.conf \ make get-git && \ - make NO_LUA=1 && \ + make LUA_PKGCONFIG=luajit && \ make install @@ -36,6 +38,7 @@ COPY --from=builder /var/www/htdocs/cgit/ /usr/local/apache2/htdocs/cgit RUN apt-get update && \ apt-get install -y \ + libluajit-5.1-2 \ zstd && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -- cgit v1.3.1