diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-02-26 19:34:42 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-02-26 19:34:42 +0100 |
| commit | 078438f5da2c21c125ebe9a722c130df9464a60b (patch) | |
| tree | 8267cd15881c5ea2f5fee9f4beb97d9a20659579 /Dockerfile | |
| download | obrona-078438f5da2c21c125ebe9a722c130df9464a60b.tar.gz obrona-078438f5da2c21c125ebe9a722c130df9464a60b.zip | |
Add exam questions
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 14 |
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 | |||
| 2 | FROM docker.io/texlive/texlive:latest | ||
| 3 | ENV DEBIAN_FRONTEND=noninteractive | ||
| 4 | ENV LANG=C.UTF-8 | ||
| 5 | RUN 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/* | ||
| 13 | WORKDIR /data | ||
| 14 | CMD ["latexmk", "-pdf", "-shell-escape", "thesis.tex"] | ||
