From f8de292f127db1a50a9ffb73487ea02c38b0bd6d Mon Sep 17 00:00:00 2001 From: soheil khaledabadi Date: Sat, 6 Jun 2026 22:12:03 +0330 Subject: [PATCH] chore(docker): mark libzip4 and libicu72 as manually installed to prevent automatic removal --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ac6a681..14fce99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ RUN apt-get -o Acquire::Check-Valid-Until=false update \ libzip-dev \ unzip \ && docker-php-ext-install -j"$(nproc)" bcmath intl pcntl pdo_mysql zip \ + && apt-mark manual libzip4 libicu72 \ && apt-get purge -y --auto-remove \ default-libmysqlclient-dev \ libicu-dev \