From 135bb9818de50250d2d9a8160d14b4f1d2a4ccc2 Mon Sep 17 00:00:00 2001 From: J0WI Date: Fri, 7 Oct 2022 14:42:27 +0200 Subject: [PATCH] Update base to Debian Bullseye Signed-off-by: J0WI --- translations/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/translations/Dockerfile b/translations/Dockerfile index 870f439f..128649a8 100644 --- a/translations/Dockerfile +++ b/translations/Dockerfile @@ -1,10 +1,10 @@ -FROM ubuntu:20.04 +FROM debian:bullseye-slim MAINTAINER Morris Jobke # Install python RUN apt-get update -q && \ - DEBIAN_FRONTEND=noninteractive apt-get install -q -y --no-install-recommends \ + apt-get install -q -y --no-install-recommends \ gawk \ gettext \ git \ @@ -17,7 +17,7 @@ RUN apt-get update -q && \ php7.4-json \ php7.4-xml \ qttools5-dev-tools \ - && apt-get clean + && rm -rf /var/lib/apt/lists/* RUN update-ca-certificates