14 lines
410 B
Docker
14 lines
410 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && apk add --no-cache bash ca-certificates make git texlive-full curl graphviz biber
|
|
|
|
# add ms fonts
|
|
RUN apk add --no-cache msttcorefonts-installer fontconfig && update-ms-fonts && fc-cache -f
|
|
|
|
# add other ttf
|
|
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
|