From e13c10c92efdaae12f8a294e0783aab29290e0f3 Mon Sep 17 00:00:00 2001 From: Pavel Kirilin Date: Tue, 8 Jul 2025 15:58:22 +0200 Subject: [PATCH] Changed back to alpine base image. --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83a0c3e..ccee52d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ FROM ghcr.io/astral-sh/uv:0.7.19 AS uv -FROM python:3.11-bookworm +FROM python:3.11-alpine3.19 -RUN apt update && apt install -y \ +RUN apk update && apk add --no-cache \ imagemagick \ + imagemagick-pdf \ texlive \ - texlive-lang-cyrillic \ - texlive-extra-utils \ - & rm -rf /var/lib/apt/lists/* + texmf-dist-langcyrillic \ + texmf-dist-latexextra ENV UV_COMPILE_BYTECODE=1 ENV UV_LINK_MODE=copy