From 5ef38fcba61e71e7118ccf33601e971ead78a9a9 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 30 Jun 2025 13:40:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8(docker)=20sort=20package=20argumen?= =?UTF-8?q?ts=20alphabetically=20in=20Dockerfiles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Arrange system package installation arguments in alphabetical order within RUN instructions to improve readability and maintainability. Enables easier tracking of changes and helps prevent potential installation errors. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a46a66fb..1558c202 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,10 +63,10 @@ FROM base AS core ENV PYTHONUNBUFFERED=1 RUN apk add \ - gettext \ cairo \ - libffi-dev \ gdk-pixbuf \ + gettext \ + libffi-dev \ pango \ shared-mime-info