ADD: run everything as the latex user

This commit is contained in:
Dominik Meyer 2024-01-10 21:28:32 +01:00
parent 895067d955
commit fcf4c6c2aa
Signed by: byterazor
GPG Key ID: EABDA0FD5981BC97
1 changed files with 5 additions and 1 deletions

View File

@ -6,4 +6,8 @@ RUN apk update && apk add --no-cache bash ca-certificates make git texlive-full
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 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