From 284b44e1b89c2c8137c67361ba3f0b612dd03c0c Mon Sep 17 00:00:00 2001 From: Benjamin Bohard Date: Wed, 3 Aug 2022 10:06:30 +0200 Subject: [PATCH] =?UTF-8?q?Adaptation=20de=20l=E2=80=99image=20docker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hooks/containerbuild/doc-compiler/add-packages | 7 ++++--- profiles/doc-compiler.conf | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/hooks/containerbuild/doc-compiler/add-packages b/hooks/containerbuild/doc-compiler/add-packages index 4394297..6512c75 100755 --- a/hooks/containerbuild/doc-compiler/add-packages +++ b/hooks/containerbuild/doc-compiler/add-packages @@ -3,8 +3,9 @@ set -e echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile -echo 'RUN apt-get update && apt-get install --yes make' >> Dockerfile -echo 'RUN apt-get update && apt-get install --yes texlive-full python3-setuptools python-setuptools python3-pygments python-pygments fonts-liberation fonts-liberation2 rubber' >> Dockerfile -echo 'RUN apt-get update && apt-get install --yes pandoc' >> Dockerfile +echo 'RUN apt update && apt dist-upgrade && apt clean all' >> Dockerfile +echo 'RUN apt update && apt install --yes make' >> Dockerfile +echo 'RUN apt update && apt install --yes python3-setuptools python-setuptools python3-pygments python-pygments fonts-liberation fonts-liberation2 && apt clean all' >> Dockerfile +echo 'RUN apt update && apt install --yes texlive-full rubber && apt clean all' >> Dockerfile echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile diff --git a/profiles/doc-compiler.conf b/profiles/doc-compiler.conf index 8eb5266..7f7e56e 100644 --- a/profiles/doc-compiler.conf +++ b/profiles/doc-compiler.conf @@ -1,7 +1,7 @@ # Configuration générale du profil [profile] # Image Docker par défaut -default_image=ubuntu:focal +default_image=ubuntu:jammy # Configuration de l’étape de pré-construction du conteneur [containerbuild]