From 2196318cfc64ea2abf1dfd8d669e22b0c876fe3e Mon Sep 17 00:00:00 2001 From: Yamila Moreno Date: Fri, 26 Sep 2025 11:23:02 +0200 Subject: [PATCH] :whale: Add curl to the backend image --- docker/images/Dockerfile.backend | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker/images/Dockerfile.backend b/docker/images/Dockerfile.backend index 70e7de44f7..8e6d0eb5e4 100644 --- a/docker/images/Dockerfile.backend +++ b/docker/images/Dockerfile.backend @@ -87,14 +87,9 @@ RUN set -ex; \ apt-get -qq upgrade; \ apt-get -qqy --no-install-recommends install \ ca-certificates \ + curl \ fontconfig \ fontforge \ - python3 \ - python3-tabulate \ - tzdata \ - woff-tools \ - woff2 \ - \ libfontconfig1 \ libfreetype6 \ libglib2.0-0 \ @@ -113,6 +108,11 @@ RUN set -ex; \ libxml2 \ libzip4t64 \ libzstd1 \ + python3 \ + python3-tabulate \ + tzdata \ + woff-tools \ + woff2 \ ; \ find tmp/usr/share/zoneinfo/* -type d ! -name 'Etc' |xargs rm -rf; \ rm -rf /var/lib /var/cache; \