2022-05-08 07:15:13 +00:00
|
|
|
FROM python:3.11-rc-slim
|
2022-05-04 16:03:58 +00:00
|
|
|
|
2022-05-08 07:15:13 +00:00
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y texlive texlive-extra-utils
|
|
|
|
|
|
|
|
RUN apt-get install -y python3-dev
|
2022-05-04 16:03:58 +00:00
|
|
|
COPY requirements.txt /tmp/
|
|
|
|
RUN pip install -r /tmp/requirements.txt
|
|
|
|
|
|
|
|
RUN mkdir -p /src/bopytex
|
|
|
|
COPY bopytex/ /src/bopytex
|
|
|
|
COPY setup.py /src/
|
|
|
|
RUN pip install -e /src
|
|
|
|
|
2022-05-09 07:09:38 +00:00
|
|
|
COPY example/simple /example
|
2022-05-04 16:03:58 +00:00
|
|
|
WORKDIR /example
|