From fe31d1078312a060942fbbbe2d585a34daaca69c Mon Sep 17 00:00:00 2001 From: Hilmar Lapp Date: Wed, 25 Sep 2024 23:53:58 -0400 Subject: [PATCH] Adds zlib as another requirement --- Dockerfile-pyonly | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile-pyonly b/Dockerfile-pyonly index e72029c..b3f38dd 100644 --- a/Dockerfile-pyonly +++ b/Dockerfile-pyonly @@ -18,6 +18,7 @@ USER root RUN apt-get update --yes && \ apt-get install --yes --no-install-recommends \ + zlib1g-dev \ libcurl4-openssl-dev && \ apt-get clean && rm -rf /var/lib/apt/lists/*