FROM alpine:3.20.3 RUN apk add --no-cache \ make=4.4.1-r2 \ graphviz=9.0.0-r2 \ texlive-xetex=20240210.69778-r4 \ texmf-dist-langfrench=2024.0-r5 \ texmf-dist-latexextra=2024.0-r5 \ texmf-dist-bibtexextra=2024.0-r5 \ texmf-dist-mathscience=2024.0-r5 \ texmf-dist-publishers=2024.0-r5 \ && rm -rfv /var/cache/apk/* ARG UID=1000 ARG GID=1000 RUN adduser -D -u "${UID}" -g "${GID}" notebook WORKDIR /home/notebook USER notebook ENTRYPOINT ["make"]