From b7f970e42ead005b8affd32fb74e95ad269669ef Mon Sep 17 00:00:00 2001 From: Frederik Beimgraben Date: Thu, 30 Oct 2025 18:25:09 +0100 Subject: [PATCH] add compose file --- docker-compose.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e4426c6 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +services: + latex: + #image: texlive/texlive:latest + build: + context: . + dockerfile_inline: | + FROM texlive/texlive:latest + RUN apt update -y + RUN apt install inkscape -y + volumes: + - ./:/data + # working_dir: /data/Projektbeschreibung-MKI-METI-Projekt + working_dir: /data + entrypoint: ["make", "compile"]