mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-02 22:17:18 +01:00
28 lines
474 B
Docker
28 lines
474 B
Docker
FROM archlinux
|
|
MAINTAINER Thomas Ruoff <thomasruoff@gmail.com>
|
|
|
|
# basics
|
|
RUN pacman -Syu --noconfirm sed grep awk
|
|
|
|
# texlive
|
|
RUN pacman -S --noconfirm texlive-core texlive-latexextra
|
|
|
|
# TODO: move up later
|
|
RUN pacman -S --noconfirm tar gzip
|
|
|
|
# node
|
|
RUN pacman -S --noconfirm nodejs npm
|
|
|
|
# private tex things
|
|
ADD ./texmf/tex/latex/* /usr/share/texmf/tex/latex/
|
|
|
|
# fix font map file issue
|
|
RUN updmap
|
|
|
|
ADD . /code
|
|
WORKDIR /code
|
|
|
|
RUN npm install --production
|
|
|
|
CMD node index.js
|