From 7421d50beeeb6163636ace31c4972e746881f7cf Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Mon, 3 Jun 2024 16:20:39 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c04225d..d1125d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,7 +58,7 @@ FROM python:3.12-slim-bookworm AS runtime # Install OS package dependency RUN --mount=type=cache,target=/var/cache/apt apt-get update -y --fix-missing && \ - apt-get install -y --no-install-recommends && \ + apt-get install apt-utils libcairo2 -y --no-install-recommends && \ apt-get clean ENV VIRTUAL_ENV=/opt/invenio/.venv \