From 6e3c5ee40bc2460dd36478ba870205c0348aeee2 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/Dockerfile b/documentation/Dockerfile index 8c8f47ed..562c6861 100644 --- a/documentation/Dockerfile +++ b/documentation/Dockerfile @@ -1,6 +1,6 @@ -FROM ubuntu:20.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 composer \ - nodejs npm libgbm1 libasound2 - + nodejs npm libgbm1 libasound2 \ + && rm -rf /var/lib/apt/lists/*