This commit is contained in:
parent
c3ea0ba3c7
commit
0cbce0c17c
1 changed files with 20 additions and 0 deletions
20
trac/jessie/Dockerfile
Normal file
20
trac/jessie/Dockerfile
Normal file
|
@ -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
|
Loading…
Reference in a new issue