9 lines
337 B
Docker
9 lines
337 B
Docker
FROM debian:bookworm-slim
|
|
|
|
#change high groups to low groups for crio/kubernetes problems
|
|
RUN sed -i 's/65534/1000/' /etc/passwd
|
|
|
|
# install additional requirements
|
|
RUN apt-get -qy update
|
|
RUN apt-get -qy install ca-certificates curl make git inkscape texlive-full xz-utils biber texlive-bibtex-extra latexmk
|
|
RUN apt-get -qy install pdftk |