Feat: make dockerfile to test my workflow

This commit is contained in:
2022-05-09 09:09:38 +02:00
parent b1353bb6c7
commit fae2afa76c
8 changed files with 47 additions and 16 deletions

17
Dockerfile.mapytex Normal file
View File

@@ -0,0 +1,17 @@
FROM python:3.11-rc-slim
RUN apt-get update
RUN apt-get install -y texlive texlive-extra-utils
RUN apt-get install -y python3-dev
COPY requirements.txt /tmp/
RUN pip install -r /tmp/requirements.txt
RUN pip install mapytex
RUN mkdir -p /src/bopytex
COPY bopytex/ /src/bopytex
COPY setup.py /src/
RUN pip install -e /src
COPY example/mapytex /example
WORKDIR /example