aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2026-02-26 19:34:42 +0100
committerFilip Wandzio <contact@philw.dev>2026-02-26 19:34:42 +0100
commit078438f5da2c21c125ebe9a722c130df9464a60b (patch)
tree8267cd15881c5ea2f5fee9f4beb97d9a20659579 /Dockerfile
downloadobrona-078438f5da2c21c125ebe9a722c130df9464a60b.tar.gz
obrona-078438f5da2c21c125ebe9a722c130df9464a60b.zip
Add exam questions
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"]