aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2026-01-06 06:50:50 +0900
committerTolmachev Igor <me@igorek.dev>2026-01-06 06:50:50 +0900
commit4f14cdffbf165cb3a5b48f5bf5a1b58e515e2ec4 (patch)
tree499b428e207206d92396d66c23a8567fc4967be4 /Dockerfile
parent86ffad6fa449cdd56f895eb8faff3ee72456f4ef (diff)
downloadcgit_material_docker-4f14cdffbf165cb3a5b48f5bf5a1b58e515e2ec4.tar.gz
cgit_material_docker-4f14cdffbf165cb3a5b48f5bf5a1b58e515e2ec4.zip
Add material highlight
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 516f38a..df191eb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,11 +15,14 @@ RUN make install
15COPY cgitrc /app 15COPY cgitrc /app
16COPY responsive/head.html /app/www/static 16COPY responsive/head.html /app/www/static
17COPY responsive/cgit.css /app/www/static 17COPY responsive/cgit.css /app/www/static
18COPY responsive/syntax-material.py /app/lib/filters
19COPY responsive/md2html /app/lib/filters/html-converters/md2html
18 20
19FROM debian:latest AS cgit-run 21FROM debian:latest AS cgit-run
20 22
21RUN apt-get update 23RUN apt-get update
22RUN apt-get install -y python3 python3-pygments lighttpd 24RUN apt-get install -y python3 python3-pygments python3-markdown python3-docutils
25RUN apt-get install -y lighttpd
23 26
24WORKDIR /app 27WORKDIR /app
25COPY --from=cgit-build /app /app 28COPY --from=cgit-build /app /app