mirror of
https://github.com/corda/corda.git
synced 2025-01-20 11:39:09 +00:00
7 lines
288 B
Docker
7 lines
288 B
Docker
FROM python:2-stretch
|
|
|
|
RUN apt-get update && apt-get install -y texlive preview-latex-style texlive-generic-extra texlive-latex-extra latexmk dos2unix
|
|
ENV PATH="/opt/docs_builder:${PATH}"
|
|
WORKDIR /opt/docs_builder
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt |