From d41ed60ee60efceb2ca6cf890f79cd6203bcad5b Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 23 Feb 2025 17:42:26 -0500 Subject: [PATCH] Update dockerfile to speed up debugging --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index df2eb4b..8e7c883 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ ENV DEBIAN_FRONTEND=noninteractive # Install system dependencies RUN apt update && \ - apt install -y apt-transport-https && \ - apt install -y git \ + apt-get install -y --no-install-recommends libc-bin apt-transport-https && \ + apt install -y --no-install-recommends git \ curl \ python3 \ python3-pip \