Latex/Containerfile

14 lines
410 B
Plaintext
Raw Permalink Normal View History

FROM alpine:latest
RUN apk update && apk add --no-cache bash ca-certificates make git texlive-full curl graphviz biber
2024-01-10 21:26:15 +01:00
# add ms fonts
RUN apk add --no-cache msttcorefonts-installer fontconfig && update-ms-fonts && fc-cache -f
# add other ttf
2024-01-10 21:28:32 +01:00
RUN apk add --no-cache ttf-liberation ttf-droid font-fira-ttf font-raleway-ttf font-bakoma-ttf
RUN addgroup latex && adduser -u 8888 -D -G latex latex
USER latex