From e96025b1172c8fd74e627b202aac377a225c873b Mon Sep 17 00:00:00 2001 From: Musa Date: Thu, 9 Jul 2026 13:40:18 -0700 Subject: [PATCH] fix(docker): remove curl to drop vulnerable libssh2 transitive dep (#986) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ad0ca707..8275fb96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ FROM python:3.14-slim AS arch RUN set -eux; \ apt-get update; \ apt-get upgrade -y; \ - apt-get install -y --no-install-recommends gettext-base curl procps; \ + apt-get install -y --no-install-recommends gettext-base procps; \ apt-get clean; rm -rf /var/lib/apt/lists/* RUN pip install --no-cache-dir supervisor