Add a base dockerfile to only build the xeps in CI

This commit is contained in:
mathieui 2017-07-11 18:46:46 +02:00 committed by Guus der Kinderen
parent f2d595964a
commit 8e9f9b3911
2 changed files with 20 additions and 17 deletions

View File

@ -1,24 +1,10 @@
FROM debian:8 FROM xmppxsf/xeps-base:latest
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/ COPY *.xml xep.* *.css *.xsl *.js *.xsl Makefile /src/
RUN mkdir /src/resources
COPY resources/*.pdf /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
RUN cat /sys/fs/cgroup/cpuset/cpuset.cpus || true WORKDIR /src
RUN cat /proc/cpuinfo || true RUN OUTDIR=/var/www/html/extensions/ make -j5 html pdf
EXPOSE 80 EXPOSE 80

17
Dockerfile.base Normal file
View File

@ -0,0 +1,17 @@
FROM debian:8
MAINTAINER XSF Editors <editor@xmpp.org>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y dist-upgrade && \
apt-get install -y \
xsltproc libxml2-utils libxml2 texlive fonts-inconsolata make nginx \
curl python python-pip texlive-xetex texlive-fonts-recommended \
texlive-fonts-extra
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 mkdir -p /src/resources /var/www/html/extensions