From 0a07e918839a2754777032efd98f5fb7ef3066e3 Mon Sep 17 00:00:00 2001 From: Apfelwurm Date: Tue, 3 Mar 2026 09:19:41 +0100 Subject: [PATCH] fix pycares build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f048b55..2317b3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY requirements.txt . ARG VENV=/opt/netbox-sync/venv # Install dependencies -RUN apt-get update && apt-get install -y --no-install-recommends git && \ +RUN apt-get update && apt-get install -y --no-install-recommends git gcc libc-dev && \ rm -rf /var/lib/apt/lists/* && \ python3 -m venv $VENV && \ $VENV/bin/python3 -m pip install --upgrade pip && \