docker-texlive/Dockerfile

9 lines
292 B
Docker
Raw Normal View History

2024-09-26 12:19:43 +00:00
FROM ubuntu:24.04
2024-09-26 12:07:13 +00:00
2024-09-26 12:19:43 +00:00
RUN apt-get update
RUN apt-get install -y wget perl libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev build-essential chrpath libssl-dev libxft-dev
RUN wget -qO- "https://yihui.org/tinytex/install-bin-unix.sh" | sh
2024-09-26 12:07:13 +00:00
2024-09-26 12:19:43 +00:00
ENV PATH="/root/bin:${PATH}"
2024-09-26 12:07:13 +00:00
2024-09-26 12:19:43 +00:00
WORKDIR /root