We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b0b15 commit d947d42Copy full SHA for d947d42
transitionmonitor_docker/Dockerfile
@@ -41,6 +41,18 @@ RUN apt-get update \
41
&& apt-get install -y --no-install-recommends $R_PKG_SYS_DEPS \
42
&& rm -rf /var/lib/apt/lists/*
43
44
+# install TeX system and fonts
45
+ ARG TEX_APT="\
46
+ texlive-xetex \
47
+ texlive-fonts-recommended \
48
+ texlive-fonts-extra \
49
+ lmodern \
50
+ "
51
+ RUN apt-get update \
52
+ && apt-get install -y --no-install-recommends $TEX_APT \
53
+ && tlmgr init-usertree \
54
+ && rm -rf /var/lib/apt/lists/*
55
+
56
# install R package dependencies
57
ARG PKG_DEPS="\
58
bookdown \
0 commit comments