From 0cbce0c17c66bb7f4779f2d537a10f2b5274006e Mon Sep 17 00:00:00 2001 From: Brice Waegeneire Date: Mon, 25 Apr 2022 17:13:00 +0200 Subject: [PATCH] Add trac. --- trac/jessie/Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 trac/jessie/Dockerfile diff --git a/trac/jessie/Dockerfile b/trac/jessie/Dockerfile new file mode 100644 index 0000000..c5e24d4 --- /dev/null +++ b/trac/jessie/Dockerfile @@ -0,0 +1,20 @@ +# Official Debian image +FROM debian:jessie + + +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + trac \ + python-babel \ + python-docutils \ + python-pygments \ + python-subversion \ + python-tz \ + && rm -rf /var/lib/apt/lists/* + +EXPOSE 80 + +VOLUME ["/var/lib/trac"] +WORKDIR /var/lib/trac + +CMD /usr/bin/tracd --single-env /var/lib/trac