From 2bbd823088d89e78701fc5ec8878842fb9ccab1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20S=C3=B6derberg?= Date: Thu, 11 Dec 2025 03:50:32 +0100 Subject: [PATCH] Updated base docker image --- build/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 088eece..c6ec1ff 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM texlive/texlive:latest # Updates and installs commons RUN apt-get update \ @@ -14,9 +14,6 @@ RUN apt-get update \ RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 ENV LANG=en_US.utf8 -# Install LaTeX -RUN apt-get install -y texlive-full - # Clears apt lists RUN rm -rf /var/lib/apt/lists/*