From 06816d87286a130da19c9019b675bc4697f2b4d1 Mon Sep 17 00:00:00 2001 From: J0WI Date: Fri, 7 Oct 2022 14:51:12 +0200 Subject: [PATCH] Update base image to Debian Bullseye Signed-off-by: J0WI --- documentation/Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/documentation/Dockerfile b/documentation/Dockerfile index eac5810c..562c6861 100644 --- a/documentation/Dockerfile +++ b/documentation/Dockerfile @@ -1,7 +1,6 @@ -FROM ubuntu:22.04 -RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pil \ +FROM debian:bullseye-slim +RUN apt-get update && apt-get install -y python3-pil \ python3-pip texlive-fonts-recommended latexmk \ - texlive-latex-extra texlive-latex-recommended make php-cli php-xml composer \ - texlive-xetex texlive-fonts-extra-links texlive-fonts-extra \ - nodejs npm libgbm1 libasound2 wget - + texlive-latex-extra texlive-latex-recommended make php-cli composer \ + nodejs npm libgbm1 libasound2 \ + && rm -rf /var/lib/apt/lists/*