11 lines
204 B
Docker
11 lines
204 B
Docker
FROM git.janishutz.com/registry/latex-build
|
|
|
|
WORKDIR /root
|
|
|
|
RUN apk add py3-pip python3
|
|
|
|
RUN pip3 install latexminted --break-system-packages
|
|
|
|
COPY ./entrypoint.sh /root/
|
|
RUN chmod +x /root/entrypoint.sh
|