-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
31 lines (23 loc) · 868 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM ubuntu:20.04
ENV LANG=C.UTF-8
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /workspace
COPY texlive.profile .
RUN apt update &&\
apt install -f -y \
wget \
make \
texlive-xetex \
fonts-font-awesome \
git \
fontconfig
RUN wget http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2023/install-tl-unx.tar.gz
RUN tar xvzf install-tl-unx.tar.gz
RUN ./install-tl-*/install-tl -profile texlive.profile -repository http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2023/tlnet-final/ --no-verify-downloads
ENV PATH="/usr/local/texlive/2023/bin/x86_64-linux:$PATH"
ENV PATH="/usr/local/texlive/2023/bin/aarch64-linux:$PATH"
ENV PATH="/usr/local/texlive/2023/bin/armhf-linux:$PATH"
COPY assets /usr/share/fonts
RUN tlmgr update --self --all --reinstall-forcibly-removed &&\
luaotfload-tool -v -vvv -u &&\
fc-cache -f -v