add compose file

This commit is contained in:
Frederik Beimgraben 2025-10-30 18:25:09 +01:00
parent 12f1d5f67c
commit b7f970e42e

14
docker-compose.yml Normal file
View File

@ -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"]