mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-21 08:45:04 -05:00
12 lines
241 B
Docker
12 lines
241 B
Docker
FROM xmppxsf/xeps-base:latest
|
|
|
|
COPY *.xml xep.* *.css *.xsl *.js *.xsl Makefile /src/
|
|
COPY resources/*.pdf /src/resources/
|
|
|
|
WORKDIR /src
|
|
RUN OUTDIR=/var/www/html/extensions/ make -j5 html pdf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD /usr/sbin/nginx -g 'daemon off;'
|