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