Aurelie Hugues
7e00d53a78
All checks were successful
continuous-integration/drone/push Build is passing
27 lines
825 B
Docker
27 lines
825 B
Docker
FROM ubuntu:jammy
|
|
LABEL author="Melora Hugues"
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update -q \
|
|
&& apt-get install -qy build-essential wget libfontconfig1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install TexLive with scheme-basic
|
|
RUN wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz; \
|
|
mkdir /install-tl-unx; \
|
|
tar -xvf install-tl-unx.tar.gz -C /install-tl-unx --strip-components=1; \
|
|
echo "selected_scheme scheme-basic" >> /install-tl-unx/texlive.profile; \
|
|
/install-tl-unx/install-tl -profile /install-tl-unx/texlive.profile; \
|
|
rm -r /install-tl-unx; \
|
|
rm install-tl-unx.tar.gz
|
|
|
|
ENV PATH="/usr/local/texlive/2022/bin/x86_64-linux:${PATH}"
|
|
|
|
ENV HOME /data
|
|
WORKDIR /data
|
|
|
|
# Install latex packages
|
|
RUN tlmgr install latexmk && \
|
|
tlmgr install fontawesome
|
|
|
|
VOLUME ["/data"]
|