From 5591c2c0f0d74b3f6caf6986630facb4eebc04f0 Mon Sep 17 00:00:00 2001 From: Benjamin Bohard Date: Wed, 13 Apr 2022 09:09:33 +0200 Subject: [PATCH] Revert "Test with lighter texlive installation" This reverts commit 0c09b27b8e5d4de41f260df1625a0669b8d02fc9. --- hooks/containerbuild/texlive/add-packages | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hooks/containerbuild/texlive/add-packages b/hooks/containerbuild/texlive/add-packages index e104f35..1c67d80 100755 --- a/hooks/containerbuild/texlive/add-packages +++ b/hooks/containerbuild/texlive/add-packages @@ -3,5 +3,9 @@ set -e echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile -echo 'RUN apt-get update && apt-get install --yes --no-install-recommends texlive make fonts-liberation fonts-liberation2 python3-pygments rubber' >> Dockerfile +echo 'RUN apt-get update && apt-get install --yes --no-install-recommends texlive-full' >> Dockerfile +echo 'RUN apt-get update && apt-get install --yes --no-install-recommends make' >> Dockerfile +echo 'RUN apt-get update && apt-get install --yes --no-install-recommends fonts-liberation fonts-liberation2' >> Dockerfile +echo 'RUN apt-get update && apt-get install --yes --no-install-recommends python3-pygments' >> Dockerfile +echo 'RUN apt-get update && apt-get install --yes --no-install-recommends rubber' >> Dockerfile echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile