aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..172a722
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,14 @@
1
2FROM docker.io/texlive/texlive:latest
3ENV DEBIAN_FRONTEND=noninteractive
4ENV LANG=C.UTF-8
5RUN apt-get update && apt-get install -y --no-install-recommends \
6 biber \
7 python3 \
8 python3-pip \
9 git \
10 inkscape \
11 && apt-get clean \
12 && rm -rf /var/lib/apt/lists/*
13WORKDIR /data
14CMD ["latexmk", "-pdf", "-shell-escape", "thesis.tex"]