2017-07-11 13:23:46 -04:00
|
|
|
# Builds all XEPs by default, HTML & PDF
|
2017-08-17 19:13:43 -04:00
|
|
|
# docker build . --build-arg NCORES=X --build-arg TARGETS="html pdf"
|
2017-07-11 13:23:46 -04:00
|
|
|
# from Dockerfile.base
|
2017-07-11 12:46:46 -04:00
|
|
|
FROM xmppxsf/xeps-base:latest
|
2017-05-11 10:11:29 -04:00
|
|
|
|
2017-07-11 13:23:46 -04:00
|
|
|
ARG NCORES=1
|
2018-02-08 02:50:27 -05:00
|
|
|
ARG TARGETS="html inbox-html inbox-xml pdf xeplist refs"
|
2017-07-11 13:23:46 -04:00
|
|
|
|
2017-05-11 10:11:29 -04:00
|
|
|
COPY *.xml xep.* *.css *.xsl *.js *.xsl Makefile /src/
|
|
|
|
COPY resources/*.pdf /src/resources/
|
2017-08-23 07:26:36 -04:00
|
|
|
COPY tools/*.py /src/tools/
|
2017-08-23 07:22:06 -04:00
|
|
|
COPY inbox/*.xml inbox/*.ent inbox/*.dtd /src/inbox/
|
2017-09-28 13:51:07 -04:00
|
|
|
COPY texml-xsl/*.xsl /src/texml-xsl/
|
2017-05-11 10:11:29 -04:00
|
|
|
|
2017-07-11 12:46:46 -04:00
|
|
|
WORKDIR /src
|
2017-07-11 13:23:46 -04:00
|
|
|
RUN OUTDIR=/var/www/html/extensions/ make -j$NCORES $TARGETS
|
2017-07-11 12:01:18 -04:00
|
|
|
|
2017-05-11 10:11:29 -04:00
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
CMD /usr/sbin/nginx -g 'daemon off;'
|