From fcf4c6c2aa03d57e09de7070d019f2219bcd6960 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Wed, 10 Jan 2024 21:28:32 +0100 Subject: [PATCH] ADD: run everything as the latex user --- Containerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 661629b..605ea03 100644 --- a/Containerfile +++ b/Containerfile @@ -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 \ No newline at end of file +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