mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-21 08:45:04 -05:00
2e53f9ad30
Add Dockerfile * Add PDF building to docker template * Add note on docker to the readme
23 lines
840 B
Docker
23 lines
840 B
Docker
FROM debian:8
|
|
MAINTAINER XSF Editors <editor@xmpp.org>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update && apt-get -y dist-upgrade
|
|
RUN apt-get install -y xsltproc libxml2-utils libxml2 texlive fonts-inconsolata make nginx
|
|
|
|
RUN mkdir /src
|
|
COPY *.xml xep.* *.css *.xsl *.js *.xsl Makefile /src/
|
|
RUN mkdir /src/resources
|
|
COPY resources/*.pdf /src/resources/
|
|
WORKDIR /src
|
|
RUN apt-get install -y curl python python-pip texlive-xetex
|
|
RUN curl https://pilotfiber.dl.sourceforge.net/project/getfo/texml/texml-2.0.2/texml-2.0.2.tar.gz -o texml-2.0.2.tar.gz && tar -xf texml-2.0.2.tar.gz && pip install texml-2.0.2/ && rm -rf texml-2.0.2
|
|
RUN apt-get install -y texlive-fonts-recommended texlive-fonts-extra
|
|
RUN mkdir /var/www/html/extensions
|
|
RUN OUTDIR=/var/www/html/extensions/ make html pdf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD /usr/sbin/nginx -g 'daemon off;'
|