We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b8e63a commit e71a942Copy full SHA for e71a942
1 file changed
Dockerfile
@@ -1,9 +1,29 @@
1
FROM ghcr.io/xu-cheng/texlive-small:latest
2
3
-
+# Install system dependencies (Alpine-based)
4
RUN apk add --no-cache \
5
inkscape \
6
- fontconfig
+ fontconfig \
7
+ bash
8
+
9
+# Install missing LaTeX packages using tlmgr
10
+RUN tlmgr install \
11
+ fullpage \
12
+ titlesec \
13
+ enumitem \
14
+ fontawesome5 \
15
+ babel-english \
16
+ tabularx \
17
+ fancyhdr \
18
+ multicol \
19
+ xcolor \
20
+ hyperref \
21
+ geometry \
22
+ scalerel \
23
+ xstring \
24
+ graphics \
25
+ pgf \
26
+ iftex
27
28
WORKDIR /app
29
0 commit comments