From 85e8776fc383ed3673fb93ac06a8eb419faf1cbc Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Wed, 15 Oct 2025 08:59:00 -0500 Subject: [PATCH] Revert "Add --fix-missing flag to handle Debian mirror issues" This reverts commit 1a47ba9369baa75b06f7240635f0aba1c7e8286a. --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3a0192a..89aba64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,7 @@ WORKDIR /app # Install system dependencies # Use --no-install-recommends and handle both amd64 and arm64 architectures -# Add --fix-missing to handle transient mirror issues -RUN apt-get clean && \ - rm -rf /var/lib/apt/lists/* && \ - apt-get update && \ - apt-get install -y --no-install-recommends --fix-missing \ +RUN apt-get update && apt-get install -y --no-install-recommends \ gcc \ postgresql-client \ libpq-dev \