From bd26581871c4ca5662179aa8c0b5df80983cdbdc Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 22 Aug 2019 13:14:45 +0200 Subject: Provide larger CentOS-based image for latest track --- latest/Dockerfile.centos | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 latest/Dockerfile.centos diff --git a/latest/Dockerfile.centos b/latest/Dockerfile.centos new file mode 100644 index 0000000..be4b174 --- /dev/null +++ b/latest/Dockerfile.centos @@ -0,0 +1,35 @@ +FROM centos:7 + +ARG TRAC_VERSION=1.2.4 +ENV HOME=/tmp + +RUN \ + yum install -y python-devel python-setuptools python-setuptools-devel make autoconf automake libtool && \ + yum install -y openssh-clients wget mc && \ + easy_install pip Genshi pytz Babel docutils Pygments + +RUN cd /usr/src && \ + curl -sL https://github.com/edgewall/trac/archive/trac-${TRAC_VERSION}.tar.gz | tar xvz && \ + cd trac-trac-${TRAC_VERSION}/ && \ + python ./setup.py install && \ + cd .. && \ + rm -Rf trac-$trac_version/ + +RUN pip install 'https://trac-hacks.org/browser/accountmanagerplugin/tags/acct_mgr-0.5.0?rev=17460&format=zip' + +RUN mkdir -p /auth && \ + touch /auth/htpasswd && \ + touch /auth/htgroups && \ + mkdir -p /trac && \ + ln -s /auth/htpasswd /trac/.htpasswd && \ + ln -s /auth/htgroups /trac/.htgroups && \ + mkdir -p /home/csa/ && \ + ln -s /trac /home/csa/.trac && \ + rm -rf /tmp/.cache/ && \ + chmod g=u /etc/passwd + +COPY docker-entrypoint.sh / +ENTRYPOINT ["/docker-entrypoint.sh"] +CMD ["tracd", "-p", "8080", "--env-parent-dir", "/trac"] + +EXPOSE 8080 -- cgit v1.2.1